Layer 227
constructor
geoPointAddress#de4c5d93 flags:# country_iso2:string state:flags.0?string city:flags.1?string street:flags.2?string = GeoPointAddress;

Parameters

Name Type Description
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

GeoPointAddress

Gogram Example

// Creating GeoPointAddressObj constructor
obj := &tg.GeoPointAddressObj{
    CountryIso2: "Hello, World!",
    State: "Hello, World!",
    City: "Hello, World!",
    Street: "Hello, World!",
}