Sha256: 9cd4dd6e619cf715ec3b14060faf0d2a98a7b84247b97ff1135d5c1d06446130

Contents?: true

Size: 707 Bytes

Versions: 2

Compression:

Stored size: 707 Bytes

Contents

module TD::Types
  # Contains information about a Telegram Passport authorization form that was requested.
  #
  # @attr id [Integer] Unique identifier of the authorization form.
  # @attr required_elements [Array<TD::Types::PassportRequiredElement>] Information about the Telegram Passport
  #   elements that need to be provided to complete the form.
  # @attr privacy_policy_url [String, nil] URL for the privacy policy of the service; may be empty.
  class PassportAuthorizationForm < Base
    attribute :id, TD::Types::Integer
    attribute :required_elements, TD::Types::Array.of(TD::Types::PassportRequiredElement)
    attribute :privacy_policy_url, TD::Types::String.optional.default(nil)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/passport_authorization_form.rb
tdlib-ruby-2.1.0 lib/tdlib/types/passport_authorization_form.rb