Class: TD::Types::EncryptedCredentials
- Defined in:
- lib/tdlib/types/encrypted_credentials.rb
Overview
Contains encrypted Telegram Passport data credentials.
Instance Attribute Summary collapse
-
#data ⇒ String
The encrypted credentials.
-
#hash ⇒ String
The decrypted data hash.
-
#secret ⇒ String
Secret for data decryption, encrypted with the service’s public key.
Method Summary
Methods inherited from Base
Instance Attribute Details
#data ⇒ String
The encrypted credentials.
7 8 9 |
# File 'lib/tdlib/types/encrypted_credentials.rb', line 7 def data @data end |
#hash ⇒ String
The decrypted data hash.
7 8 9 |
# File 'lib/tdlib/types/encrypted_credentials.rb', line 7 def hash @hash end |
#secret ⇒ String
Secret for data decryption, encrypted with the service’s public key.
7 8 9 |
# File 'lib/tdlib/types/encrypted_credentials.rb', line 7 def secret @secret end |