PaymentRequestedInfo

class pyrogram.raw.base.PaymentRequestedInfo

Requested payment info

Constructors:

This base type has 1 constructor available.

PaymentRequestedInfo

Order info provided by the user

TL Schema

paymentRequestedInfo#909c3f94
flags:#
name:flags.0?string
phone:flags.1?string
email:flags.2?string
shipping_address:flags.3?PostAddress

= PaymentRequestedInfo

Parameter Tree

PaymentRequestedInfo
├── namestring (optional)
├── phonestring (optional)
├── emailstring (optional)
└── shipping_addressPostAddress (optional)
└── PostAddress
├── street_line1string
├── street_line2string
├── citystring
├── statestring
├── country_iso2string
└── post_codestring

Example

PaymentRequestedInfo(
    name="text",
    phone="+1234567890",
    email="text",
    shipping_address=PostAddress(
        street_line1="text",
        street_line2="text",
        city="text",
        state="text",
        country_iso2="text",
        post_code="text"
    ),
)