Sha256: e7415f9b48332071ce1cb4a5f6dff3aa4eed282b0d4530a921e026d4065c5768

Contents?: true

Size: 354 Bytes

Versions: 2

Compression:

Stored size: 354 Bytes

Contents

module TD::Types
  # Represents a list of users.
  #
  # @attr total_count [Integer] Approximate total count of users found.
  # @attr user_ids [Array<Integer>] A list of user identifiers.
  class Users < Base
    attribute :total_count, TD::Types::Coercible::Integer
    attribute :user_ids, 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/users.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/users.rb