-
Notifications
You must be signed in to change notification settings - Fork 403
Expand file tree
/
Copy pathCreateCustomerProfileTransactionRequest.php
More file actions
99 lines (87 loc) · 2.52 KB
/
Copy pathCreateCustomerProfileTransactionRequest.php
File metadata and controls
99 lines (87 loc) · 2.52 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
<?php
namespace net\authorize\api\contract\v1;
/**
* Class representing CreateCustomerProfileTransactionRequest
*/
class CreateCustomerProfileTransactionRequest extends ANetApiRequestType
{
/**
* @property \net\authorize\api\contract\v1\ProfileTransactionType $transaction
*/
private $transaction = null;
/**
* @property string $extraOptions
*/
private $extraOptions = null;
/**
* Gets as transaction
*
* @return \net\authorize\api\contract\v1\ProfileTransactionType
*/
public function getTransaction()
{
return $this->transaction;
}
/**
* Sets a new transaction
*
* @param \net\authorize\api\contract\v1\ProfileTransactionType $transaction
* @return self
*/
public function setTransaction(\net\authorize\api\contract\v1\ProfileTransactionType $transaction)
{
$this->transaction = $transaction;
return $this;
}
/**
* Gets as extraOptions
*
* @return string
*/
public function getExtraOptions()
{
return $this->extraOptions;
}
/**
* Sets a new extraOptions
*
* @param string $extraOptions
* @return self
*/
public function setExtraOptions($extraOptions)
{
$this->extraOptions = $extraOptions;
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);
}
}