Skip to content

Commit 414cb0f

Browse files
committed
Changes for Q3 API updates:
1. Change for client ID 2. Payer EMail change 3. Unmasked expiration date
1 parent 23ddcb1 commit 414cb0f

30 files changed

Lines changed: 1643 additions & 0 deletions
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing AuDeleteType
7+
*
8+
*
9+
* XSD Type: auDeleteType
10+
*/
11+
class AuDeleteType extends AuDetailsType
12+
{
13+
14+
/**
15+
* @property \net\authorize\api\contract\v1\CreditCardMaskedType $creditCard
16+
*/
17+
private $creditCard = null;
18+
19+
/**
20+
* Gets as creditCard
21+
*
22+
* @return \net\authorize\api\contract\v1\CreditCardMaskedType
23+
*/
24+
public function getCreditCard()
25+
{
26+
return $this->creditCard;
27+
}
28+
29+
/**
30+
* Sets a new creditCard
31+
*
32+
* @param \net\authorize\api\contract\v1\CreditCardMaskedType $creditCard
33+
* @return self
34+
*/
35+
public function setCreditCard(\net\authorize\api\contract\v1\CreditCardMaskedType $creditCard)
36+
{
37+
$this->creditCard = $creditCard;
38+
return $this;
39+
}
40+
41+
42+
}
43+
Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing AuDetailsType
7+
*
8+
*
9+
* XSD Type: auDetailsType
10+
*/
11+
class AuDetailsType
12+
{
13+
14+
/**
15+
* @property integer $customerProfileID
16+
*/
17+
private $customerProfileID = null;
18+
19+
/**
20+
* @property integer $customerPaymentProfileID
21+
*/
22+
private $customerPaymentProfileID = null;
23+
24+
/**
25+
* @property string $firstName
26+
*/
27+
private $firstName = null;
28+
29+
/**
30+
* @property string $lastName
31+
*/
32+
private $lastName = null;
33+
34+
/**
35+
* @property string $updateTimeUTC
36+
*/
37+
private $updateTimeUTC = null;
38+
39+
/**
40+
* @property string $auReasonCode
41+
*/
42+
private $auReasonCode = null;
43+
44+
/**
45+
* @property string $reasonDescription
46+
*/
47+
private $reasonDescription = null;
48+
49+
/**
50+
* Gets as customerProfileID
51+
*
52+
* @return integer
53+
*/
54+
public function getCustomerProfileID()
55+
{
56+
return $this->customerProfileID;
57+
}
58+
59+
/**
60+
* Sets a new customerProfileID
61+
*
62+
* @param integer $customerProfileID
63+
* @return self
64+
*/
65+
public function setCustomerProfileID($customerProfileID)
66+
{
67+
$this->customerProfileID = $customerProfileID;
68+
return $this;
69+
}
70+
71+
/**
72+
* Gets as customerPaymentProfileID
73+
*
74+
* @return integer
75+
*/
76+
public function getCustomerPaymentProfileID()
77+
{
78+
return $this->customerPaymentProfileID;
79+
}
80+
81+
/**
82+
* Sets a new customerPaymentProfileID
83+
*
84+
* @param integer $customerPaymentProfileID
85+
* @return self
86+
*/
87+
public function setCustomerPaymentProfileID($customerPaymentProfileID)
88+
{
89+
$this->customerPaymentProfileID = $customerPaymentProfileID;
90+
return $this;
91+
}
92+
93+
/**
94+
* Gets as firstName
95+
*
96+
* @return string
97+
*/
98+
public function getFirstName()
99+
{
100+
return $this->firstName;
101+
}
102+
103+
/**
104+
* Sets a new firstName
105+
*
106+
* @param string $firstName
107+
* @return self
108+
*/
109+
public function setFirstName($firstName)
110+
{
111+
$this->firstName = $firstName;
112+
return $this;
113+
}
114+
115+
/**
116+
* Gets as lastName
117+
*
118+
* @return string
119+
*/
120+
public function getLastName()
121+
{
122+
return $this->lastName;
123+
}
124+
125+
/**
126+
* Sets a new lastName
127+
*
128+
* @param string $lastName
129+
* @return self
130+
*/
131+
public function setLastName($lastName)
132+
{
133+
$this->lastName = $lastName;
134+
return $this;
135+
}
136+
137+
/**
138+
* Gets as updateTimeUTC
139+
*
140+
* @return string
141+
*/
142+
public function getUpdateTimeUTC()
143+
{
144+
return $this->updateTimeUTC;
145+
}
146+
147+
/**
148+
* Sets a new updateTimeUTC
149+
*
150+
* @param string $updateTimeUTC
151+
* @return self
152+
*/
153+
public function setUpdateTimeUTC($updateTimeUTC)
154+
{
155+
$this->updateTimeUTC = $updateTimeUTC;
156+
return $this;
157+
}
158+
159+
/**
160+
* Gets as auReasonCode
161+
*
162+
* @return string
163+
*/
164+
public function getAuReasonCode()
165+
{
166+
return $this->auReasonCode;
167+
}
168+
169+
/**
170+
* Sets a new auReasonCode
171+
*
172+
* @param string $auReasonCode
173+
* @return self
174+
*/
175+
public function setAuReasonCode($auReasonCode)
176+
{
177+
$this->auReasonCode = $auReasonCode;
178+
return $this;
179+
}
180+
181+
/**
182+
* Gets as reasonDescription
183+
*
184+
* @return string
185+
*/
186+
public function getReasonDescription()
187+
{
188+
return $this->reasonDescription;
189+
}
190+
191+
/**
192+
* Sets a new reasonDescription
193+
*
194+
* @param string $reasonDescription
195+
* @return self
196+
*/
197+
public function setReasonDescription($reasonDescription)
198+
{
199+
$this->reasonDescription = $reasonDescription;
200+
return $this;
201+
}
202+
203+
204+
}
205+
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing AuResponseType
7+
*
8+
*
9+
* XSD Type: auResponseType
10+
*/
11+
class AuResponseType
12+
{
13+
14+
/**
15+
* @property string $auReasonCode
16+
*/
17+
private $auReasonCode = null;
18+
19+
/**
20+
* @property integer $profileCount
21+
*/
22+
private $profileCount = null;
23+
24+
/**
25+
* @property string $reasonDescription
26+
*/
27+
private $reasonDescription = null;
28+
29+
/**
30+
* Gets as auReasonCode
31+
*
32+
* @return string
33+
*/
34+
public function getAuReasonCode()
35+
{
36+
return $this->auReasonCode;
37+
}
38+
39+
/**
40+
* Sets a new auReasonCode
41+
*
42+
* @param string $auReasonCode
43+
* @return self
44+
*/
45+
public function setAuReasonCode($auReasonCode)
46+
{
47+
$this->auReasonCode = $auReasonCode;
48+
return $this;
49+
}
50+
51+
/**
52+
* Gets as profileCount
53+
*
54+
* @return integer
55+
*/
56+
public function getProfileCount()
57+
{
58+
return $this->profileCount;
59+
}
60+
61+
/**
62+
* Sets a new profileCount
63+
*
64+
* @param integer $profileCount
65+
* @return self
66+
*/
67+
public function setProfileCount($profileCount)
68+
{
69+
$this->profileCount = $profileCount;
70+
return $this;
71+
}
72+
73+
/**
74+
* Gets as reasonDescription
75+
*
76+
* @return string
77+
*/
78+
public function getReasonDescription()
79+
{
80+
return $this->reasonDescription;
81+
}
82+
83+
/**
84+
* Sets a new reasonDescription
85+
*
86+
* @param string $reasonDescription
87+
* @return self
88+
*/
89+
public function setReasonDescription($reasonDescription)
90+
{
91+
$this->reasonDescription = $reasonDescription;
92+
return $this;
93+
}
94+
95+
96+
}
97+

0 commit comments

Comments
 (0)