'OwnerId', 'resourceOwnerAccount' => 'ResourceOwnerAccount', 'resourceOwnerId' => 'ResourceOwnerId', 'templateType' => 'TemplateType', 'templateName' => 'TemplateName', 'templateContent' => 'TemplateContent', 'remark' => 'Remark', ]; public function validate() { } public function toMap() { $res = []; if (null !== $this->ownerId) { $res['OwnerId'] = $this->ownerId; } if (null !== $this->resourceOwnerAccount) { $res['ResourceOwnerAccount'] = $this->resourceOwnerAccount; } if (null !== $this->resourceOwnerId) { $res['ResourceOwnerId'] = $this->resourceOwnerId; } if (null !== $this->templateType) { $res['TemplateType'] = $this->templateType; } if (null !== $this->templateName) { $res['TemplateName'] = $this->templateName; } if (null !== $this->templateContent) { $res['TemplateContent'] = $this->templateContent; } if (null !== $this->remark) { $res['Remark'] = $this->remark; } return $res; } /** * @param array $map * * @return AddSmsTemplateRequest */ public static function fromMap($map = []) { $model = new self(); if (isset($map['OwnerId'])) { $model->ownerId = $map['OwnerId']; } if (isset($map['ResourceOwnerAccount'])) { $model->resourceOwnerAccount = $map['ResourceOwnerAccount']; } if (isset($map['ResourceOwnerId'])) { $model->resourceOwnerId = $map['ResourceOwnerId']; } if (isset($map['TemplateType'])) { $model->templateType = $map['TemplateType']; } if (isset($map['TemplateName'])) { $model->templateName = $map['TemplateName']; } if (isset($map['TemplateContent'])) { $model->templateContent = $map['TemplateContent']; } if (isset($map['Remark'])) { $model->remark = $map['Remark']; } return $model; } }