85 lines
1.7 KiB
PHP
85 lines
1.7 KiB
PHP
<?php
|
|
|
|
// This file is auto-generated, don't edit it. Thanks.
|
|
|
|
namespace AlibabaCloud\SDK\Live\V20161101\Models;
|
|
|
|
use AlibabaCloud\SDK\Live\V20161101\Models\AddMultiRateConfigResponseBody\body;
|
|
use AlibabaCloud\Tea\Model;
|
|
|
|
class AddMultiRateConfigResponseBody extends Model
|
|
{
|
|
/**
|
|
* @var body
|
|
*/
|
|
public $body;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $code;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $message;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $requestId;
|
|
protected $_name = [
|
|
'body' => 'Body',
|
|
'code' => 'Code',
|
|
'message' => 'Message',
|
|
'requestId' => 'RequestId',
|
|
];
|
|
|
|
public function validate()
|
|
{
|
|
}
|
|
|
|
public function toMap()
|
|
{
|
|
$res = [];
|
|
if (null !== $this->body) {
|
|
$res['Body'] = null !== $this->body ? $this->body->toMap() : null;
|
|
}
|
|
if (null !== $this->code) {
|
|
$res['Code'] = $this->code;
|
|
}
|
|
if (null !== $this->message) {
|
|
$res['Message'] = $this->message;
|
|
}
|
|
if (null !== $this->requestId) {
|
|
$res['RequestId'] = $this->requestId;
|
|
}
|
|
|
|
return $res;
|
|
}
|
|
|
|
/**
|
|
* @param array $map
|
|
*
|
|
* @return AddMultiRateConfigResponseBody
|
|
*/
|
|
public static function fromMap($map = [])
|
|
{
|
|
$model = new self();
|
|
if (isset($map['Body'])) {
|
|
$model->body = body::fromMap($map['Body']);
|
|
}
|
|
if (isset($map['Code'])) {
|
|
$model->code = $map['Code'];
|
|
}
|
|
if (isset($map['Message'])) {
|
|
$model->message = $map['Message'];
|
|
}
|
|
if (isset($map['RequestId'])) {
|
|
$model->requestId = $map['RequestId'];
|
|
}
|
|
|
|
return $model;
|
|
}
|
|
}
|