-
Notifications
You must be signed in to change notification settings - Fork 403
Expand file tree
/
Copy pathCreateCustomerShippingAddressRequest.php
More file actions
126 lines (111 loc) · 3.1 KB
/
Copy pathCreateCustomerShippingAddressRequest.php
File metadata and controls
126 lines (111 loc) · 3.1 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
namespace net\authorize\api\contract\v1;
/**
* Class representing CreateCustomerShippingAddressRequest
*/
class CreateCustomerShippingAddressRequest extends ANetApiRequestType
{
/**
* @property string $customerProfileId
*/
private $customerProfileId = null;
/**
* @property \net\authorize\api\contract\v1\CustomerAddressType $address
*/
private $address = null;
/**
* @property boolean $defaultShippingAddress
*/
private $defaultShippingAddress = null;
/**
* Gets as customerProfileId
*
* @return string
*/
public function getCustomerProfileId()
{
return $this->customerProfileId;
}
/**
* Sets a new customerProfileId
*
* @param string $customerProfileId
* @return self
*/
public function setCustomerProfileId($customerProfileId)
{
$this->customerProfileId = $customerProfileId;
return $this;
}
/**
* Gets as address
*
* @return \net\authorize\api\contract\v1\CustomerAddressType
*/
public function getAddress()
{
return $this->address;
}
/**
* Sets a new address
*
* @param \net\authorize\api\contract\v1\CustomerAddressType $address
* @return self
*/
public function setAddress(\net\authorize\api\contract\v1\CustomerAddressType $address)
{
$this->address = $address;
return $this;
}
/**
* Gets as defaultShippingAddress
*
* @return boolean
*/
public function getDefaultShippingAddress()
{
return $this->defaultShippingAddress;
}
/**
* Sets a new defaultShippingAddress
*
* @param boolean $defaultShippingAddress
* @return self
*/
public function setDefaultShippingAddress($defaultShippingAddress)
{
$this->defaultShippingAddress = $defaultShippingAddress;
return $this;
}
// Json Serialize Code
#[\ReturnTypeWillChange]
public function jsonSerialize(): mixed
{
$values = array_filter((array)get_object_vars($this),
function ($val){
return !is_null($val);
});
$mapper = \net\authorize\util\Mapper::Instance();
foreach($values as $key => $value){
$classDetails = $mapper->getClass(get_class() , $key);
if (isset($value)){
if ($classDetails->className === 'Date'){
$dateTime = $value->format('Y-m-d');
$values[$key] = $dateTime;
}
else if ($classDetails->className === 'DateTime'){
$dateTime = $value->format('Y-m-d\TH:i:s\Z');
$values[$key] = $dateTime;
}
if (is_array($value)){
if (!$classDetails->isInlineArray){
$subKey = $classDetails->arrayEntryname;
$subArray = [$subKey => $value];
$values[$key] = $subArray;
}
}
}
}
return array_merge(parent::jsonSerialize(), $values);
}
}