You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponseBody.php

120 lines
2.5 KiB

<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Dysmsapi\V20170525\Models;
use AlibabaCloud\Tea\Model;
class QuerySmsSignResponseBody extends Model
{
/**
* @var string
*/
public $requestId;
/**
* @var int
*/
public $signStatus;
/**
* @var string
*/
public $code;
/**
* @var string
*/
public $message;
/**
* @var string
*/
public $createDate;
/**
* @var string
*/
public $reason;
/**
* @var string
*/
public $signName;
protected $_name = [
'requestId' => 'RequestId',
'signStatus' => 'SignStatus',
'code' => 'Code',
'message' => 'Message',
'createDate' => 'CreateDate',
'reason' => 'Reason',
'signName' => 'SignName',
];
public function validate()
{
}
public function toMap()
{
$res = [];
if (null !== $this->requestId) {
$res['RequestId'] = $this->requestId;
}
if (null !== $this->signStatus) {
$res['SignStatus'] = $this->signStatus;
}
if (null !== $this->code) {
$res['Code'] = $this->code;
}
if (null !== $this->message) {
$res['Message'] = $this->message;
}
if (null !== $this->createDate) {
$res['CreateDate'] = $this->createDate;
}
if (null !== $this->reason) {
$res['Reason'] = $this->reason;
}
if (null !== $this->signName) {
$res['SignName'] = $this->signName;
}
return $res;
}
/**
* @param array $map
*
* @return QuerySmsSignResponseBody
*/
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['RequestId'])) {
$model->requestId = $map['RequestId'];
}
if (isset($map['SignStatus'])) {
$model->signStatus = $map['SignStatus'];
}
if (isset($map['Code'])) {
$model->code = $map['Code'];
}
if (isset($map['Message'])) {
$model->message = $map['Message'];
}
if (isset($map['CreateDate'])) {
$model->createDate = $map['CreateDate'];
}
if (isset($map['Reason'])) {
$model->reason = $map['Reason'];
}
if (isset($map['SignName'])) {
$model->signName = $map['SignName'];
}
return $model;
}
}