<?php
|
/*
|
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
*
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
* you may not use this file except in compliance with the License.
|
* You may obtain a copy of the License at
|
*
|
* http://www.apache.org/licenses/LICENSE-2.0
|
*
|
* Unless required by applicable law or agreed to in writing, software
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* See the License for the specific language governing permissions and
|
* limitations under the License.
|
*/
|
namespace TencentCloud\Sms\V20190711\Models;
|
use TencentCloud\Common\AbstractModel;
|
|
/**
|
* PullSmsReplyStatus请求参数结构体
|
*
|
* @method integer getLimit() 获取拉取最大条数,最多100条。
|
* @method void setLimit(integer $Limit) 设置拉取最大条数,最多100条。
|
* @method string getSmsSdkAppid() 获取短信 SdkAppid 在 [短信控制台](https://console.cloud.tencent.com/smsv2) 添加应用后生成的实际 SdkAppid,例如1400006666。
|
* @method void setSmsSdkAppid(string $SmsSdkAppid) 设置短信 SdkAppid 在 [短信控制台](https://console.cloud.tencent.com/smsv2) 添加应用后生成的实际 SdkAppid,例如1400006666。
|
*/
|
class PullSmsReplyStatusRequest extends AbstractModel
|
{
|
/**
|
* @var integer 拉取最大条数,最多100条。
|
*/
|
public $Limit;
|
|
/**
|
* @var string 短信 SdkAppid 在 [短信控制台](https://console.cloud.tencent.com/smsv2) 添加应用后生成的实际 SdkAppid,例如1400006666。
|
*/
|
public $SmsSdkAppid;
|
|
/**
|
* @param integer $Limit 拉取最大条数,最多100条。
|
* @param string $SmsSdkAppid 短信 SdkAppid 在 [短信控制台](https://console.cloud.tencent.com/smsv2) 添加应用后生成的实际 SdkAppid,例如1400006666。
|
*/
|
function __construct()
|
{
|
|
}
|
|
/**
|
* For internal only. DO NOT USE IT.
|
*/
|
public function deserialize($param)
|
{
|
if ($param === null) {
|
return;
|
}
|
if (array_key_exists("Limit",$param) and $param["Limit"] !== null) {
|
$this->Limit = $param["Limit"];
|
}
|
|
if (array_key_exists("SmsSdkAppid",$param) and $param["SmsSdkAppid"] !== null) {
|
$this->SmsSdkAppid = $param["SmsSdkAppid"];
|
}
|
}
|
}
|