Sha256: bc4b4adb44822c19e3777c1e284f72d7e1ad984eb49c2bc85c18059ba798d46f
Contents?: true
Size: 726 Bytes
Versions: 2
Compression:
Stored size: 726 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 [TD::Types::String, nil] URL for the privacy policy of the service; may be empty. class PassportAuthorizationForm < Base attribute :id, TD::Types::Coercible::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-schema-1.7.0.3 | lib/tdlib/types/passport_authorization_form.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/passport_authorization_form.rb |