-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCsrResponse.php
50 lines (45 loc) · 1.95 KB
/
CsrResponse.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
<?php
namespace Iris;
use AllowDynamicProperties;
#[AllowDynamicProperties]
class CsrResponse {
use BaseModel;
protected $fields = array(
"OrderId" => array("type" => "string"),
"Status" => array("type" => "string"),
"AccountNumber" => array("type" => "string"),
"AccountTelephoneNumber" => array("type" => "string"),
"EndUserName" => array("type" => "string"),
"AuthorizingUserName" => array("type" => "string"),
"CustomerCode" => array("type" => "string"),
"EndUserPIN" => array("type" => "string"),
"EndUserPassword" => array("type" => "string"),
"AddressLine1" => array("type" => "string"),
"City" => array("type" => "string"),
"State" => array("type" => "string"),
"ZIPCode" => array("type" => "string"),
"TypeOfService" => array("type" => "string"),
"Errors" => array("type" => "\Iris\ErrorList"),
"CustomerOrderId" => array("type" => "string"),
"LastModifiedBy" => array("type" => "string"),
"OrderCreateDate" => array("type" => "string"),
"AccountId" => array("type" => "string"),
"LastModifiedDate" => array("type" => "string"),
"AccountNumber" => array("type" => "string"),
"AccountTelephoneNumber" => array("type" => "string"),
"EndUserName" => array("type" => "string"),
"AuthorizingUserName" => array("type" => "string"),
"CustomerCode" => array("type" => "string"),
"EndUserPIN" => array("type" => "string"),
"EndUserPassword" => array("type" => "string"),
"AddressLine1" => array("type" => "string"),
"City" => array("type" => "string"),
"State" => array("type" => "string"),
"ZIPCode" => array("type" => "string"),
"TypeOfService" => array("type" => "string"),
"CsrData" => array("type" => "\Iris\CsrData")
);
public function __construct($data) {
$this->set_data($data);
}
}