Layer 220
GeoPointAddress
Address optionally associated to a geo Point.
constructor
geoPointAddress#de4c5d93 flags:# country_iso2:string state:flags.0?string city:flags.1?string street:flags.2?string = GeoPointAddress;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| CountryIso2 | string | Two-letter ISO 3166-1 alpha-2 country code |
| State | flags.0?string | State |
| City | flags.1?string | City |
| Street | flags.2?string | Street |
Returns
GeoPointAddressGogram Example
// Creating GeoPointAddress constructor obj := &tg.GeoPointAddress{ CountryIso2: "...", // Optional fields: // State: "...", // City: "...", // Street: "...", }