Inherits Object.
Describes an address of a location.
Public Fields | |
string | country_code_ |
A two-letter ISO 3166-1 alpha-2 country code. | |
string | state_ |
State, if applicable; empty if unknown. | |
string | city_ |
City; empty if unknown. | |
string | street_ |
The address; empty if unknown. | |
Public Instance Methods | |
locationAddress () | |
locationAddress (string const &country_code_, string const &state_, string const &city_, string const &street_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1545940190 |
Identifier uniquely determining a type of the object. | |
locationAddress | ( | ) |
Describes an address of a location.
locationAddress | ( | string const & | country_code_, |
string const & | state_, | ||
string const & | city_, | ||
string const & | street_ | ||
) |
Describes an address of a location.
[in] | country_code_ | A two-letter ISO 3166-1 alpha-2 country code. |
[in] | state_ | State, if applicable; empty if unknown. |
[in] | city_ | City; empty if unknown. |
[in] | street_ | The address; empty if unknown. |
|
finalvirtual |