class Tourmaline::EncryptedPassportElement
      
inherits Reference
#
  Describes documents or other Telegram Passport elements shared with the bot by the user.
Included modules
JSON::Serializable
Constructors#
    
      .new(type, hash, data : String? = nil, phone_number : String? = nil, email : String? = nil, files : Array(Tourmaline::PassportFile) = [] of Tourmaline::PassportFile, front_side : Tourmaline::PassportFile? = nil, reverse_side : Tourmaline::PassportFile? = nil, selfie : Tourmaline::PassportFile? = nil, translation : Array(Tourmaline::PassportFile) = [] of Tourmaline::PassportFile)
    
#
  (type, hash, data : String? = nil, phone_number : String? = nil, email : String? = nil, files : Array(Tourmaline::PassportFile) = [] of Tourmaline::PassportFile, front_side : Tourmaline::PassportFile? = nil, reverse_side : Tourmaline::PassportFile? = nil, selfie : Tourmaline::PassportFile? = nil, translation : Array(Tourmaline::PassportFile) = [] of Tourmaline::PassportFile)
    Methods#
    
      #data : String?
    
#
  : String?
    Optional. Base64-encoded encrypted Telegram Passport element data provided by the user; available only for "personal_details", "passport", "driver_license", "identity_card", "internal_passport" and "address" types. Can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #data=(data : String?)
    
#
  (data : String?)
    Optional. Base64-encoded encrypted Telegram Passport element data provided by the user; available only for "personal_details", "passport", "driver_license", "identity_card", "internal_passport" and "address" types. Can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #email : String?
    
#
  : String?
    Optional. User's verified email address; available only for "email" type
    
      #email=(email : String?)
    
#
  (email : String?)
    Optional. User's verified email address; available only for "email" type
    
      #files : Array(Tourmaline::PassportFile)
    
#
  : Array(Tourmaline::PassportFile)
    Optional. Array of encrypted files with documents provided by the user; available only for "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #files=(files : Array(Tourmaline::PassportFile))
    
#
  (files : Array(Tourmaline::PassportFile))
    Optional. Array of encrypted files with documents provided by the user; available only for "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #front_side : Tourmaline::PassportFile?
    
#
  : Tourmaline::PassportFile?
    Optional. Encrypted file with the front side of the document, provided by the user; available only for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #front_side=(front_side : Tourmaline::PassportFile?)
    
#
  (front_side : Tourmaline::PassportFile?)
    Optional. Encrypted file with the front side of the document, provided by the user; available only for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #hash : String
    
#
  : String
    Base64-encoded element hash for using in PassportElementErrorUnspecified
    
      #hash=(hash : String)
    
#
  (hash : String)
    Base64-encoded element hash for using in PassportElementErrorUnspecified
    
      #phone_number : String?
    
#
  : String?
    Optional. User's verified phone number; available only for "phone_number" type
    
      #phone_number=(phone_number : String?)
    
#
  (phone_number : String?)
    Optional. User's verified phone number; available only for "phone_number" type
    
      #reverse_side : Tourmaline::PassportFile?
    
#
  : Tourmaline::PassportFile?
    Optional. Encrypted file with the reverse side of the document, provided by the user; available only for "driver_license" and "identity_card". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #reverse_side=(reverse_side : Tourmaline::PassportFile?)
    
#
  (reverse_side : Tourmaline::PassportFile?)
    Optional. Encrypted file with the reverse side of the document, provided by the user; available only for "driver_license" and "identity_card". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #selfie : Tourmaline::PassportFile?
    
#
  : Tourmaline::PassportFile?
    Optional. Encrypted file with the selfie of the user holding a document, provided by the user; available if requested for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #selfie=(selfie : Tourmaline::PassportFile?)
    
#
  (selfie : Tourmaline::PassportFile?)
    Optional. Encrypted file with the selfie of the user holding a document, provided by the user; available if requested for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #translation : Array(Tourmaline::PassportFile)
    
#
  : Array(Tourmaline::PassportFile)
    Optional. Array of encrypted files with translated versions of documents provided by the user; available if requested for "passport", "driver_license", "identity_card", "internal_passport", "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #translation=(translation : Array(Tourmaline::PassportFile))
    
#
  (translation : Array(Tourmaline::PassportFile))
    Optional. Array of encrypted files with translated versions of documents provided by the user; available if requested for "passport", "driver_license", "identity_card", "internal_passport", "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials.
    
      #type : String
    
#
  : String
    Element type. One of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration", "phone_number", "email".
    
      #type=(type : String)
    
#
  (type : String)
    Element type. One of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration", "phone_number", "email".