-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
/
Copy pathOrder.php
256 lines (225 loc) · 4.71 KB
/
Order.php
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
/**
* Order
*
* PHP version 5
*
* @category Class
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
/**
* OpenAPI Petstore
*
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://github.com/openapitools/openapi-generator.git
*
*/
/**
* NOTE: This class is auto generated by the openapi generator program.
* https://github.com/openapitools/openapi-generator
* Do not edit the class manually.
*/
namespace OpenAPI\Server\Model;
use Symfony\Component\Validator\Constraints as Assert;
use JMS\Serializer\Annotation\Type;
use JMS\Serializer\Annotation\SerializedName;
/**
* Class representing the Order model.
*
* An order for a pets from the pet store
*
* @package OpenAPI\Server\Model
* @author OpenAPI Generator team
*/
class Order
{
/**
* @var int|null
* @SerializedName("id")
* @Assert\Type("int")
* @Type("int")
*/
protected $id;
/**
* @var int|null
* @SerializedName("petId")
* @Assert\Type("int")
* @Type("int")
*/
protected $petId;
/**
* @var int|null
* @SerializedName("quantity")
* @Assert\Type("int")
* @Type("int")
*/
protected $quantity;
/**
* @var \DateTime|null
* @SerializedName("shipDate")
* @Assert\DateTime()
* @Type("DateTime")
*/
protected $shipDate;
/**
* Order Status
*
* @var string|null
* @SerializedName("status")
* @Assert\Choice({ "placed", "approved", "delivered" })
* @Assert\Type("string")
* @Type("string")
*/
protected $status;
/**
* @var bool|null
* @SerializedName("complete")
* @Assert\Type("bool")
* @Type("bool")
*/
protected $complete;
/**
* Constructor
* @param mixed[] $data Associated array of property values initializing the model
*/
public function __construct(array $data = null)
{
$this->id = isset($data['id']) ? $data['id'] : null;
$this->petId = isset($data['petId']) ? $data['petId'] : null;
$this->quantity = isset($data['quantity']) ? $data['quantity'] : null;
$this->shipDate = isset($data['shipDate']) ? $data['shipDate'] : null;
$this->status = isset($data['status']) ? $data['status'] : null;
$this->complete = isset($data['complete']) ? $data['complete'] : false;
}
/**
* Gets id.
*
* @return int|null
*/
public function getId()
{
return $this->id;
}
/**
* Sets id.
*
* @param int|null $id
*
* @return $this
*/
public function setId($id = null)
{
$this->id = $id;
return $this;
}
/**
* Gets petId.
*
* @return int|null
*/
public function getPetId()
{
return $this->petId;
}
/**
* Sets petId.
*
* @param int|null $petId
*
* @return $this
*/
public function setPetId($petId = null)
{
$this->petId = $petId;
return $this;
}
/**
* Gets quantity.
*
* @return int|null
*/
public function getQuantity()
{
return $this->quantity;
}
/**
* Sets quantity.
*
* @param int|null $quantity
*
* @return $this
*/
public function setQuantity($quantity = null)
{
$this->quantity = $quantity;
return $this;
}
/**
* Gets shipDate.
*
* @return \DateTime|null
*/
public function getShipDate(): ?\DateTime
{
return $this->shipDate;
}
/**
* Sets shipDate.
*
* @param \DateTime|null $shipDate
*
* @return $this
*/
public function setShipDate(\DateTime $shipDate = null)
{
$this->shipDate = $shipDate;
return $this;
}
/**
* Gets status.
*
* @return string|null
*/
public function getStatus()
{
return $this->status;
}
/**
* Sets status.
*
* @param string|null $status Order Status
*
* @return $this
*/
public function setStatus($status = null)
{
$this->status = $status;
return $this;
}
/**
* Gets complete.
*
* @return bool|null
*/
public function isComplete()
{
return $this->complete;
}
/**
* Sets complete.
*
* @param bool|null $complete
*
* @return $this
*/
public function setComplete($complete = null)
{
$this->complete = $complete;
return $this;
}
}