Sha256: 8ff65371a2be86ef6eafb7f91492a110b07589f37439a22c4e45997f976409d0

Contents?: true

Size: 438 Bytes

Versions: 1

Compression:

Stored size: 438 Bytes

Contents

module TD::Types
  # Represents the current authorization state of the client.
  class AuthorizationState < Base
    %w[
      wait_tdlib_parameters
      wait_encryption_key
      wait_phone_number
      wait_code
      wait_registration
      wait_password
      ready
      logging_out
      closing
      closed
    ].each do |type|
      autoload TD::Types.camelize(type), "tdlib/types/authorization_state/#{type}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.1.0 lib/tdlib/types/authorization_state.rb