StartMicroOutboundResponseBody.php
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\Dyvmsapi\V20170525\Models;
use AlibabaCloud\Tea\Model;
class StartMicroOutboundResponseBody extends Model
{
/**
* @var string
*/
public $code;
/**
* @var string
*/
public $customerInfo;
/**
* @var string
*/
public $invokeCmdId;
/**
* @var string
*/
public $invokeCreateTime;
/**
* @var string
*/
public $message;
/**
* @var string
*/
public $requestId;
protected $_name = [
'code' => 'Code',
'customerInfo' => 'CustomerInfo',
'invokeCmdId' => 'InvokeCmdId',
'invokeCreateTime' => 'InvokeCreateTime',
'message' => 'Message',
'requestId' => 'RequestId',
];
public function validate()
{
}
public function toMap()
{
$res = [];
if (null !== $this->code) {
$res['Code'] = $this->code;
}
if (null !== $this->customerInfo) {
$res['CustomerInfo'] = $this->customerInfo;
}
if (null !== $this->invokeCmdId) {
$res['InvokeCmdId'] = $this->invokeCmdId;
}
if (null !== $this->invokeCreateTime) {
$res['InvokeCreateTime'] = $this->invokeCreateTime;
}
if (null !== $this->message) {
$res['Message'] = $this->message;
}
if (null !== $this->requestId) {
$res['RequestId'] = $this->requestId;
}
return $res;
}
/**
* @param array $map
*
* @return StartMicroOutboundResponseBody
*/
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['Code'])) {
$model->code = $map['Code'];
}
if (isset($map['CustomerInfo'])) {
$model->customerInfo = $map['CustomerInfo'];
}
if (isset($map['InvokeCmdId'])) {
$model->invokeCmdId = $map['InvokeCmdId'];
}
if (isset($map['InvokeCreateTime'])) {
$model->invokeCreateTime = $map['InvokeCreateTime'];
}
if (isset($map['Message'])) {
$model->message = $map['Message'];
}
if (isset($map['RequestId'])) {
$model->requestId = $map['RequestId'];
}
return $model;
}
}