MadelineProtoDocs/old_docs/API_docs_v81/constructors/postAddress.md

49 lines
1.3 KiB
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: postAddress
description: postAddress attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: postAddress
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|street\_line1|[string](../types/string.md) | Yes|
|street\_line2|[string](../types/string.md) | Yes|
|city|[string](../types/string.md) | Yes|
|state|[string](../types/string.md) | Yes|
|country\_iso2|[string](../types/string.md) | Yes|
|post\_code|[string](../types/string.md) | Yes|
### Type: [PostAddress](../types/PostAddress.md)
### Example:
```
$postAddress = ['_' => 'postAddress', 'street_line1' => 'string', 'street_line2' => 'string', 'city' => 'string', 'state' => 'string', 'country_iso2' => 'string', 'post_code' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "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'}
```