Sha256: b245fa61fb11a19681be35e1ad66446063ae05ac85727b72b6e6251c5a94775e

Contents?: true

Size: 772 Bytes

Versions: 2

Compression:

Stored size: 772 Bytes

Contents

module TD::Types
  # The user has been authorized, but needs to enter a password to start using the application.
  #
  # @attr password_hint [TD::Types::String, nil] Hint for the password; may be empty.
  # @attr has_recovery_email_address [Boolean] True, if a recovery email address has been set up.
  # @attr recovery_email_address_pattern [TD::Types::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

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/authorization_state/wait_password.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/authorization_state/wait_password.rb