1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
postAddress | Post address | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: postAddress
Post address
Attributes:
Name | Type | Required | Description |
---|---|---|---|
street_line1 | string | Yes | Street line1 |
street_line2 | string | Yes | Street line2 |
city | string | Yes | City |
state | string | Yes | State |
country_iso2 | string | Yes | Country iso2 |
post_code | string | Yes | Post code |
Type: PostAddress
Example:
$postAddress = ['_' => 'postAddress', 'street_line1' => 'string', 'street_line2' => 'string', 'city' => 'string', 'state' => 'string', 'country_iso2' => 'string', 'post_code' => 'string'];
Or, if you're into Lua:
postAddress={_='postAddress', street_line1='string', street_line2='string', city='string', state='string', country_iso2='string', post_code='string'}