Sha256: 7567302635147e072f5ca553007e3570eb14c527781f3be0b2a73de0d989271e

Contents?: true

Size: 527 Bytes

Versions: 2

Compression:

Stored size: 527 Bytes

Contents

module TD::Types
  # Contains full information about a user profile photo.
  #
  # @attr id [Integer] Unique user profile photo identifier.
  # @attr added_date [Integer] Point in time (Unix timestamp) when the photo has been added.
  # @attr sizes [Array<TD::Types::PhotoSize>] Available variants of the user photo, in different sizes.
  class UserProfilePhoto < Base
    attribute :id, TD::Types::Integer
    attribute :added_date, TD::Types::Integer
    attribute :sizes, TD::Types::Array.of(TD::Types::PhotoSize)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/user_profile_photo.rb
tdlib-ruby-2.1.0 lib/tdlib/types/user_profile_photo.rb