Sha256: 55f1967c398bacbdf3de507596330b3d5e295a4f88957509d9733d1a74187757
Contents?: true
Size: 749 Bytes
Versions: 1
Compression:
Stored size: 749 Bytes
Contents
module TD::Types # The user has been authorized, but needs to enter a password to start using the application. # # @attr password_hint [String, nil] Hint for the password; can be empty. # @attr has_recovery_email_address [Boolean] True if a recovery email address has been set up. # @attr recovery_email_address_pattern [String, nil] Pattern of the email address to which the recovery email was # sent; empty until a recovery email has been sent. class AuthorizationState::WaitPassword < AuthorizationState attribute :password_hint, TD::Types::String.optional.default(nil) attribute :has_recovery_email_address, TD::Types::Bool attribute :recovery_email_address_pattern, TD::Types::String.optional.default(nil) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.0.0 | lib/tdlib/types/authorization_state/wait_password.rb |