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