Sha256: 7f61a9b48d216b47419abd3b087debb33a72efbe25650657957119d09a77349c
Contents?: true
Size: 624 Bytes
Versions: 2
Compression:
Stored size: 624 Bytes
Contents
module TD::Types # Represents the result of an ImportContacts request. # # @attr user_ids [Array<Integer>] User identifiers of the imported contacts in the same order as they were specified # in the request; 0 if the contact is not yet a registered user. # @attr importer_count [Array<Integer>] The number of users that imported the corresponding contact; 0 for already # registered users or if unavailable. class ImportedContacts < Base attribute :user_ids, TD::Types::Array.of(TD::Types::Coercible::Integer) attribute :importer_count, TD::Types::Array.of(TD::Types::Coercible::Integer) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/imported_contacts.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/imported_contacts.rb |