-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathCreateCustomerPaymentProfileRequest.php
More file actions
125 lines (110 loc) · 3.08 KB
/
CreateCustomerPaymentProfileRequest.php
File metadata and controls
125 lines (110 loc) · 3.08 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
<?php
namespace net\authorize\api\contract\v1;
/**
* Class representing CreateCustomerPaymentProfileRequest
*/
class CreateCustomerPaymentProfileRequest extends ANetApiRequestType
{
/**
* @property string $customerProfileId
*/
private $customerProfileId = null;
/**
* @property \net\authorize\api\contract\v1\CustomerPaymentProfileType
* $paymentProfile
*/
private $paymentProfile = null;
/**
* @property string $validationMode
*/
private $validationMode = 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 paymentProfile
*
* @return \net\authorize\api\contract\v1\CustomerPaymentProfileType
*/
public function getPaymentProfile()
{
return $this->paymentProfile;
}
/**
* Sets a new paymentProfile
*
* @param \net\authorize\api\contract\v1\CustomerPaymentProfileType $paymentProfile
* @return self
*/
public function setPaymentProfile(\net\authorize\api\contract\v1\CustomerPaymentProfileType $paymentProfile)
{
$this->paymentProfile = $paymentProfile;
return $this;
}
/**
* Gets as validationMode
*
* @return string
*/
public function getValidationMode()
{
return $this->validationMode;
}
/**
* Sets a new validationMode
*
* @param string $validationMode
* @return self
*/
public function setValidationMode($validationMode)
{
$this->validationMode = $validationMode;
return $this;
}
// Json Serialize Code
public function jsonSerialize(){
$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);
}
}