Inherits Object.
An identity document.
Public Fields | |
string | number_ |
Document number; 1-24 characters. | |
object_ptr< date > | expiration_date_ |
Document expiration date; may be null if not applicable. | |
object_ptr< datedFile > | front_side_ |
Front side of the document. | |
object_ptr< datedFile > | reverse_side_ |
Reverse side of the document; only for driver license and identity card; may be null. | |
object_ptr< datedFile > | selfie_ |
Selfie with the document; may be null. | |
array< object_ptr< datedFile > > | translation_ |
List of files containing a certified English translation of the document. | |
Public Instance Methods | |
identityDocument () | |
identityDocument (string const &number_, object_ptr< date > &&expiration_date_, object_ptr< datedFile > &&front_side_, object_ptr< datedFile > &&reverse_side_, object_ptr< datedFile > &&selfie_, array< object_ptr< datedFile >> &&translation_) | |
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 = 1001703606 |
Identifier uniquely determining a type of the object. | |
identityDocument | ( | ) |
An identity document.
identityDocument | ( | string const & | number_, |
object_ptr< date > && | expiration_date_, | ||
object_ptr< datedFile > && | front_side_, | ||
object_ptr< datedFile > && | reverse_side_, | ||
object_ptr< datedFile > && | selfie_, | ||
array< object_ptr< datedFile >> && | translation_ | ||
) |
An identity document.
[in] | number_ | Document number; 1-24 characters. |
[in] | expiration_date_ | Document expiration date; may be null if not applicable. |
[in] | front_side_ | Front side of the document. |
[in] | reverse_side_ | Reverse side of the document; only for driver license and identity card; may be null. |
[in] | selfie_ | Selfie with the document; may be null. |
[in] | translation_ | List of files containing a certified English translation of the document. |
|
finalvirtual |