<?php
|
|
// This file is auto-generated, don't edit it. Thanks.
|
namespace Alipay\EasySDK\Marketing\OpenLife\Models;
|
|
use AlibabaCloud\Tea\Model;
|
|
class AlipayOpenPublicMessageContentModifyResponse extends Model {
|
protected $_name = [
|
'httpBody' => 'http_body',
|
'code' => 'code',
|
'msg' => 'msg',
|
'subCode' => 'sub_code',
|
'subMsg' => 'sub_msg',
|
'contentId' => 'content_id',
|
'contentUrl' => 'content_url',
|
];
|
public function validate() {
|
Model::validateRequired('httpBody', $this->httpBody, true);
|
Model::validateRequired('code', $this->code, true);
|
Model::validateRequired('msg', $this->msg, true);
|
Model::validateRequired('subCode', $this->subCode, true);
|
Model::validateRequired('subMsg', $this->subMsg, true);
|
Model::validateRequired('contentId', $this->contentId, true);
|
Model::validateRequired('contentUrl', $this->contentUrl, true);
|
}
|
public function toMap() {
|
$res = [];
|
if (null !== $this->httpBody) {
|
$res['http_body'] = $this->httpBody;
|
}
|
if (null !== $this->code) {
|
$res['code'] = $this->code;
|
}
|
if (null !== $this->msg) {
|
$res['msg'] = $this->msg;
|
}
|
if (null !== $this->subCode) {
|
$res['sub_code'] = $this->subCode;
|
}
|
if (null !== $this->subMsg) {
|
$res['sub_msg'] = $this->subMsg;
|
}
|
if (null !== $this->contentId) {
|
$res['content_id'] = $this->contentId;
|
}
|
if (null !== $this->contentUrl) {
|
$res['content_url'] = $this->contentUrl;
|
}
|
return $res;
|
}
|
/**
|
* @param array $map
|
* @return AlipayOpenPublicMessageContentModifyResponse
|
*/
|
public static function fromMap($map = []) {
|
$model = new self();
|
if(isset($map['http_body'])){
|
$model->httpBody = $map['http_body'];
|
}
|
if(isset($map['code'])){
|
$model->code = $map['code'];
|
}
|
if(isset($map['msg'])){
|
$model->msg = $map['msg'];
|
}
|
if(isset($map['sub_code'])){
|
$model->subCode = $map['sub_code'];
|
}
|
if(isset($map['sub_msg'])){
|
$model->subMsg = $map['sub_msg'];
|
}
|
if(isset($map['content_id'])){
|
$model->contentId = $map['content_id'];
|
}
|
if(isset($map['content_url'])){
|
$model->contentUrl = $map['content_url'];
|
}
|
return $model;
|
}
|
/**
|
* @description 响应原始字符串
|
* @var string
|
*/
|
public $httpBody;
|
|
/**
|
* @var string
|
*/
|
public $code;
|
|
/**
|
* @var string
|
*/
|
public $msg;
|
|
/**
|
* @var string
|
*/
|
public $subCode;
|
|
/**
|
* @var string
|
*/
|
public $subMsg;
|
|
/**
|
* @var string
|
*/
|
public $contentId;
|
|
/**
|
* @var string
|
*/
|
public $contentUrl;
|
|
}
|