Sha256: ebdc942d2c5f9a4a11acbea673890e7386127da31d226b86265c90874345b732

Contents?: true

Size: 552 Bytes

Versions: 1

Compression:

Stored size: 552 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class EncryptedPassportElement < Base
        attribute :type, String
        attribute :data, String
        attribute :phone_number, String
        attribute :email, String
        attribute :files, Array.of(PassportFile)
        attribute :front_side, PassportFile
        attribute :reverse_side, PassportFile
        attribute :selfie, PassportFile
        attribute :translation, Array.of(PassportFile)
        attribute :hash, String
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
telegram-bot-types-0.7.0 lib/telegram/bot/types/encrypted_passport_element.rb