Sha256: 2d7495ea42d3da7fdf0de711588e7cd3e863ed83a73590bed31f029c63dfd5cc

Contents?: true

Size: 602 Bytes

Versions: 4

Compression:

Stored size: 602 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::Integer)
    attribute :importer_count, TD::Types::Array.of(TD::Types::Integer)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/imported_contacts.rb
tdlib-ruby-2.2.0 lib/tdlib/types/imported_contacts.rb
tdlib-ruby-2.1.0 lib/tdlib/types/imported_contacts.rb
tdlib-ruby-2.0.0 lib/tdlib/types/imported_contacts.rb