PostAddress
- class pyrogram.raw.types.PostAddress
Shipping address
Constructor of
PostAddress.- Details:
Layer:
223ID:
1E8CAAEB
- Parameters:
street_line1 (
str) – First line for the addressstreet_line2 (
str) – Second line for the addresscity (
str) – Citystate (
str) – State, if applicable (empty otherwise)country_iso2 (
str) – ISO 3166-1 alpha-2 country codepost_code (
str) – Address post code
TL Schema
postAddress#1e8caaeb
street_line1:string
street_line2:string
city:string
state:string
country_iso2:string
post_code:string
= PostAddress
Parameter Tree
PostAddress
├── street_line1 →
string├── street_line2 →
string├── city →
string├── state →
string├── country_iso2 →
string└── post_code →
stringExample
PostAddress(
street_line1="text",
street_line2="text",
city="text",
state="text",
country_iso2="text",
post_code="text",
)