module Telbe

The main module that agregates all classes

Constants

CHAT_MEMBER_STATUS
VERSION

Public Instance Methods

GetUserProfilePhotosDescriptor() click to toggle source

user_id Integer Yes Unique identifier of the target user offset Integer Optional Sequential number of the first photo to be returned. By default, all photos are returned. limit Integer Optional Limits the number of photos to be retrieved. Values between 1—100 are accepted. Defaults to 100.

# File lib/telbe/user.rb, line 47
def GetUserProfilePhotosDescriptor
  include SimplifyApi
  attribute :user_id, Integer, mandatory: true
  attribute :offset, Integer
  attribute :limit, Integer
end