Sha256: 3eb70663d927c5bc3ff3f7b64c13df8c52c0beb33316317867f0f66aeaef2b15
Contents?: true
Size: 704 Bytes
Versions: 1
Compression:
Stored size: 704 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 must 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/passport_authorization_form.rb |