PaymentRequestedInfo
- class pyrogram.raw.base.PaymentRequestedInfo
Requested payment info
- Constructors:
This base type has 1 constructor available.
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
├── name →
string (optional)├── phone →
string (optional)├── email →
string (optional)└── shipping_address →
PostAddress (optional)└──
PostAddress├── street_line1 →
string├── street_line2 →
string├── city →
string├── state →
string├── country_iso2 →
string└── post_code →
stringExample
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"
),
)