class TencentCloud::Sms::V20190711::SmsPackagesStatisticsRequest

SmsPackagesStatistics请求参数结构体

Attributes

Limit[RW]

@param SmsSdkAppid: 短信SdkAppid在 [短信控制台](console.cloud.tencent.com/smsv2) 添加应用后生成的实际SdkAppid,示例如1400006666。 @type SmsSdkAppid: String @param Limit: 最大上限(需要拉取的套餐包个数)。 @type Limit: Integer @param Offset: 偏移量。 注:目前固定设置为0。 @type Offset: Integer

Offset[RW]

@param SmsSdkAppid: 短信SdkAppid在 [短信控制台](console.cloud.tencent.com/smsv2) 添加应用后生成的实际SdkAppid,示例如1400006666。 @type SmsSdkAppid: String @param Limit: 最大上限(需要拉取的套餐包个数)。 @type Limit: Integer @param Offset: 偏移量。 注:目前固定设置为0。 @type Offset: Integer

SmsSdkAppid[RW]

@param SmsSdkAppid: 短信SdkAppid在 [短信控制台](console.cloud.tencent.com/smsv2) 添加应用后生成的实际SdkAppid,示例如1400006666。 @type SmsSdkAppid: String @param Limit: 最大上限(需要拉取的套餐包个数)。 @type Limit: Integer @param Offset: 偏移量。 注:目前固定设置为0。 @type Offset: Integer

Public Class Methods

new(smssdkappid=nil, limit=nil, offset=nil) click to toggle source
# File lib/v20190711/models.rb, line 1338
def initialize(smssdkappid=nil, limit=nil, offset=nil)
  @SmsSdkAppid = smssdkappid
  @Limit = limit
  @Offset = offset
end

Public Instance Methods

deserialize(params) click to toggle source
# File lib/v20190711/models.rb, line 1344
def deserialize(params)
  @SmsSdkAppid = params['SmsSdkAppid']
  @Limit = params['Limit']
  @Offset = params['Offset']
end