-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathARBCreateSubscriptionRequest.php
More file actions
70 lines (61 loc) · 1.98 KB
/
ARBCreateSubscriptionRequest.php
File metadata and controls
70 lines (61 loc) · 1.98 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
<?php
namespace net\authorize\api\contract\v1;
/**
* Class representing ARBCreateSubscriptionRequest
*/
class ARBCreateSubscriptionRequest extends ANetApiRequestType
{
/**
* @property \net\authorize\api\contract\v1\ARBSubscriptionType $subscription
*/
private $subscription = null;
/**
* Gets as subscription
*
* @return \net\authorize\api\contract\v1\ARBSubscriptionType
*/
public function getSubscription()
{
return $this->subscription;
}
/**
* Sets a new subscription
*
* @param \net\authorize\api\contract\v1\ARBSubscriptionType $subscription
* @return self
*/
public function setSubscription(\net\authorize\api\contract\v1\ARBSubscriptionType $subscription)
{
$this->subscription = $subscription;
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);
}
}