Sha256: 4579675808b6b1cc30c53dd0e9c727805a9147e046347dd747b096bc69cdfd67

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

module TD::Types
  # Describes a user profile photo.
  #
  # @attr id [Integer] Photo identifier; 0 for an empty photo.
  #   Can be used to find a photo in a list of userProfilePhotos.
  # @attr small [TD::Types::File] A small (160x160) user profile photo.
  # @attr big [TD::Types::File] A big (640x640) user profile photo.
  class ProfilePhoto < Base
    attribute :id, TD::Types::Integer
    attribute :small, TD::Types::File
    attribute :big, TD::Types::File
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.0.0 lib/tdlib/types/profile_photo.rb