blob: 97f46dcca60176cad2dd0d10d3b2279747b780dc [file] [log] [blame]
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace RocketMQ\Eventbridge\SDK\Models;
use AlibabaCloud\Tea\Model;
use RocketMQ\Eventbridge\SDK\Models\GetEventSourceResponseBody;
class GetEventSourceResponse extends Model {
protected $_name = [
'headers' => 'headers',
'statusCode' => 'statusCode',
'body' => 'body',
];
public function validate() {}
public function toMap() {
$res = [];
if (null !== $this->headers) {
$res['headers'] = $this->headers;
}
if (null !== $this->statusCode) {
$res['statusCode'] = $this->statusCode;
}
if (null !== $this->body) {
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
}
return $res;
}
/**
* @param array $map
* @return GetEventSourceResponse
*/
public static function fromMap($map = []) {
$model = new self();
if(isset($map['headers'])){
$model->headers = $map['headers'];
}
if(isset($map['statusCode'])){
$model->statusCode = $map['statusCode'];
}
if(isset($map['body'])){
$model->body = GetEventSourceResponseBody::fromMap($map['body']);
}
return $model;
}
/**
* @var string[]
*/
public $headers;
/**
* @var int
*/
public $statusCode;
/**
* @var GetEventSourceResponseBody
*/
public $body;
}