Sha256: 9742d88aba9ddf62575c9fb6b8285307c770a8e86602dfb6ab614f9d6992a5d7
Contents?: true
Size: 494 Bytes
Versions: 7
Compression:
Stored size: 494 Bytes
Contents
module TD::Types # A personal document, containing some information about a user. # # @attr files [Array<TD::Types::DatedFile>] List of files containing the pages of the document. # @attr translation [Array<TD::Types::DatedFile>] List of files containing a certified English translation of the # document. class PersonalDocument < Base attribute :files, TD::Types::Array.of(TD::Types::DatedFile) attribute :translation, TD::Types::Array.of(TD::Types::DatedFile) end end
Version data entries
7 entries across 7 versions & 2 rubygems