class TencentCloud::Trtc::V20190722::DescribePictureRequest

DescribePicture请求参数结构体

Attributes

PageNo[RW]

@param SdkAppId: 应用ID @type SdkAppId: Integer @param PictureId: 图片ID,不填时返回该应用下所有图片 @type PictureId: Integer @param PageSize: 每页数量,不填时默认为10 @type PageSize: Integer @param PageNo: 页码,不填时默认为1 @type PageNo: Integer

PageSize[RW]

@param SdkAppId: 应用ID @type SdkAppId: Integer @param PictureId: 图片ID,不填时返回该应用下所有图片 @type PictureId: Integer @param PageSize: 每页数量,不填时默认为10 @type PageSize: Integer @param PageNo: 页码,不填时默认为1 @type PageNo: Integer

PictureId[RW]

@param SdkAppId: 应用ID @type SdkAppId: Integer @param PictureId: 图片ID,不填时返回该应用下所有图片 @type PictureId: Integer @param PageSize: 每页数量,不填时默认为10 @type PageSize: Integer @param PageNo: 页码,不填时默认为1 @type PageNo: Integer

SdkAppId[RW]

@param SdkAppId: 应用ID @type SdkAppId: Integer @param PictureId: 图片ID,不填时返回该应用下所有图片 @type PictureId: Integer @param PageSize: 每页数量,不填时默认为10 @type PageSize: Integer @param PageNo: 页码,不填时默认为1 @type PageNo: Integer

Public Class Methods

new(sdkappid=nil, pictureid=nil, pagesize=nil, pageno=nil) click to toggle source
# File lib/v20190722/models.rb, line 532
def initialize(sdkappid=nil, pictureid=nil, pagesize=nil, pageno=nil)
  @SdkAppId = sdkappid
  @PictureId = pictureid
  @PageSize = pagesize
  @PageNo = pageno
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190722/models.rb, line 539
def deserialize(params)
  @SdkAppId = params['SdkAppId']
  @PictureId = params['PictureId']
  @PageSize = params['PageSize']
  @PageNo = params['PageNo']
end