Sha256: 6b164db65b1dc2ef48128bb91d68b989ce645c1ef42b0ca043c46cca6e5da7f0
Contents?: true
Size: 490 Bytes
Versions: 6
Compression:
Stored size: 490 Bytes
Contents
module TD::Types # A personal document to be saved to Telegram Passport. # # @attr files [Array<TD::Types::InputFile>] List of files containing the pages of the document. # @attr translation [Array<TD::Types::InputFile>] List of files containing a certified English translation of the # document. class InputPersonalDocument < Base attribute :files, TD::Types::Array.of(TD::Types::InputFile) attribute :translation, TD::Types::Array.of(TD::Types::InputFile) end end
Version data entries
6 entries across 6 versions & 2 rubygems