-
Notifications
You must be signed in to change notification settings - Fork 403
Expand file tree
/
Copy pathCreateTransactionResponse.php
More file actions
118 lines (105 loc) · 3.01 KB
/
Copy pathCreateTransactionResponse.php
File metadata and controls
118 lines (105 loc) · 3.01 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
<?php
namespace net\authorize\api\contract\v1;
/**
* Class representing CreateTransactionResponse
*/
class CreateTransactionResponse extends ANetApiResponseType
{
/**
* @property \net\authorize\api\contract\v1\TransactionResponseType
* $transactionResponse
*/
private $transactionResponse = null;
/**
* @property \net\authorize\api\contract\v1\CreateProfileResponseType
* $profileResponse
*/
private $profileResponse = null;
/**
* Gets as transactionResponse
*
* @return \net\authorize\api\contract\v1\TransactionResponseType
*/
public function getTransactionResponse()
{
return $this->transactionResponse;
}
/**
* Sets a new transactionResponse
*
* @param \net\authorize\api\contract\v1\TransactionResponseType
* $transactionResponse
* @return self
*/
public function setTransactionResponse(\net\authorize\api\contract\v1\TransactionResponseType $transactionResponse)
{
$this->transactionResponse = $transactionResponse;
return $this;
}
/**
* Gets as profileResponse
*
* @return \net\authorize\api\contract\v1\CreateProfileResponseType
*/
public function getProfileResponse()
{
return $this->profileResponse;
}
/**
* Sets a new profileResponse
*
* @param \net\authorize\api\contract\v1\CreateProfileResponseType $profileResponse
* @return self
*/
public function setProfileResponse(\net\authorize\api\contract\v1\CreateProfileResponseType $profileResponse)
{
$this->profileResponse = $profileResponse;
return $this;
}
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
if($classDetails !== NULL ) {
if ($classDetails->isArray) {
if ($classDetails->isCustomDefined) {
foreach($value AS $keyChild => $valueChild) {
$type = new $classDetails->className;
$type->set($valueChild);
$this->{'addTo' . $key}($type);
}
}
else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) {
foreach($value AS $keyChild => $valueChild) {
$type = new \DateTime($valueChild);
$this->{'addTo' . $key}($type);
}
}
else {
foreach($value AS $keyChild => $valueChild) {
$this->{'addTo' . $key}($valueChild);
}
}
}
else {
if ($classDetails->isCustomDefined){
$type = new $classDetails->className;
$type->set($value);
$this->{'set' . $key}($type);
}
else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) {
$type = new \DateTime($value);
$this->{'set' . $key}($type);
}
else {
$this->{'set' . $key}($value);
}
}
}
}
}
}
}