Skip to content

Commit f5a282d

Browse files
committed
Updating from the new xsd
1 parent b8b5371 commit f5a282d

8 files changed

Lines changed: 847 additions & 0 deletions
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing CardArtType
7+
*
8+
*
9+
* XSD Type: cardArt
10+
*/
11+
class CardArtType
12+
{
13+
14+
/**
15+
* @property string $cardBrand
16+
*/
17+
private $cardBrand = null;
18+
19+
/**
20+
* @property string $cardImageHeight
21+
*/
22+
private $cardImageHeight = null;
23+
24+
/**
25+
* @property string $cardImageUrl
26+
*/
27+
private $cardImageUrl = null;
28+
29+
/**
30+
* @property string $cardImageWidth
31+
*/
32+
private $cardImageWidth = null;
33+
34+
/**
35+
* @property string $cardType
36+
*/
37+
private $cardType = null;
38+
39+
/**
40+
* Gets as cardBrand
41+
*
42+
* @return string
43+
*/
44+
public function getCardBrand()
45+
{
46+
return $this->cardBrand;
47+
}
48+
49+
/**
50+
* Sets a new cardBrand
51+
*
52+
* @param string $cardBrand
53+
* @return self
54+
*/
55+
public function setCardBrand($cardBrand)
56+
{
57+
$this->cardBrand = $cardBrand;
58+
return $this;
59+
}
60+
61+
/**
62+
* Gets as cardImageHeight
63+
*
64+
* @return string
65+
*/
66+
public function getCardImageHeight()
67+
{
68+
return $this->cardImageHeight;
69+
}
70+
71+
/**
72+
* Sets a new cardImageHeight
73+
*
74+
* @param string $cardImageHeight
75+
* @return self
76+
*/
77+
public function setCardImageHeight($cardImageHeight)
78+
{
79+
$this->cardImageHeight = $cardImageHeight;
80+
return $this;
81+
}
82+
83+
/**
84+
* Gets as cardImageUrl
85+
*
86+
* @return string
87+
*/
88+
public function getCardImageUrl()
89+
{
90+
return $this->cardImageUrl;
91+
}
92+
93+
/**
94+
* Sets a new cardImageUrl
95+
*
96+
* @param string $cardImageUrl
97+
* @return self
98+
*/
99+
public function setCardImageUrl($cardImageUrl)
100+
{
101+
$this->cardImageUrl = $cardImageUrl;
102+
return $this;
103+
}
104+
105+
/**
106+
* Gets as cardImageWidth
107+
*
108+
* @return string
109+
*/
110+
public function getCardImageWidth()
111+
{
112+
return $this->cardImageWidth;
113+
}
114+
115+
/**
116+
* Sets a new cardImageWidth
117+
*
118+
* @param string $cardImageWidth
119+
* @return self
120+
*/
121+
public function setCardImageWidth($cardImageWidth)
122+
{
123+
$this->cardImageWidth = $cardImageWidth;
124+
return $this;
125+
}
126+
127+
/**
128+
* Gets as cardType
129+
*
130+
* @return string
131+
*/
132+
public function getCardType()
133+
{
134+
return $this->cardType;
135+
}
136+
137+
/**
138+
* Sets a new cardType
139+
*
140+
* @param string $cardType
141+
* @return self
142+
*/
143+
public function setCardType($cardType)
144+
{
145+
$this->cardType = $cardType;
146+
return $this;
147+
}
148+
149+
150+
}
151+
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing DecryptPaymentDataRequest
7+
*/
8+
class DecryptPaymentDataRequest extends ANetApiRequestType
9+
{
10+
11+
/**
12+
* @property \net\authorize\api\contract\v1\OpaqueDataType $opaqueData
13+
*/
14+
private $opaqueData = null;
15+
16+
/**
17+
* @property string $callId
18+
*/
19+
private $callId = null;
20+
21+
/**
22+
* Gets as opaqueData
23+
*
24+
* @return \net\authorize\api\contract\v1\OpaqueDataType
25+
*/
26+
public function getOpaqueData()
27+
{
28+
return $this->opaqueData;
29+
}
30+
31+
/**
32+
* Sets a new opaqueData
33+
*
34+
* @param \net\authorize\api\contract\v1\OpaqueDataType $opaqueData
35+
* @return self
36+
*/
37+
public function setOpaqueData(\net\authorize\api\contract\v1\OpaqueDataType $opaqueData)
38+
{
39+
$this->opaqueData = $opaqueData;
40+
return $this;
41+
}
42+
43+
/**
44+
* Gets as callId
45+
*
46+
* @return string
47+
*/
48+
public function getCallId()
49+
{
50+
return $this->callId;
51+
}
52+
53+
/**
54+
* Sets a new callId
55+
*
56+
* @param string $callId
57+
* @return self
58+
*/
59+
public function setCallId($callId)
60+
{
61+
$this->callId = $callId;
62+
return $this;
63+
}
64+
65+
66+
}
67+
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<?php
2+
3+
namespace net\authorize\api\contract\v1;
4+
5+
/**
6+
* Class representing DecryptPaymentDataResponse
7+
*/
8+
class DecryptPaymentDataResponse extends ANetApiResponseType
9+
{
10+
11+
/**
12+
* @property \net\authorize\api\contract\v1\CustomerAddressType $shippingInfo
13+
*/
14+
private $shippingInfo = null;
15+
16+
/**
17+
* @property \net\authorize\api\contract\v1\CustomerAddressType $billingInfo
18+
*/
19+
private $billingInfo = null;
20+
21+
/**
22+
* @property \net\authorize\api\contract\v1\CreditCardMaskedType $cardInfo
23+
*/
24+
private $cardInfo = null;
25+
26+
/**
27+
* @property \net\authorize\api\contract\v1\PaymentDetailsType $paymentDetails
28+
*/
29+
private $paymentDetails = null;
30+
31+
/**
32+
* Gets as shippingInfo
33+
*
34+
* @return \net\authorize\api\contract\v1\CustomerAddressType
35+
*/
36+
public function getShippingInfo()
37+
{
38+
return $this->shippingInfo;
39+
}
40+
41+
/**
42+
* Sets a new shippingInfo
43+
*
44+
* @param \net\authorize\api\contract\v1\CustomerAddressType $shippingInfo
45+
* @return self
46+
*/
47+
public function setShippingInfo(\net\authorize\api\contract\v1\CustomerAddressType $shippingInfo)
48+
{
49+
$this->shippingInfo = $shippingInfo;
50+
return $this;
51+
}
52+
53+
/**
54+
* Gets as billingInfo
55+
*
56+
* @return \net\authorize\api\contract\v1\CustomerAddressType
57+
*/
58+
public function getBillingInfo()
59+
{
60+
return $this->billingInfo;
61+
}
62+
63+
/**
64+
* Sets a new billingInfo
65+
*
66+
* @param \net\authorize\api\contract\v1\CustomerAddressType $billingInfo
67+
* @return self
68+
*/
69+
public function setBillingInfo(\net\authorize\api\contract\v1\CustomerAddressType $billingInfo)
70+
{
71+
$this->billingInfo = $billingInfo;
72+
return $this;
73+
}
74+
75+
/**
76+
* Gets as cardInfo
77+
*
78+
* @return \net\authorize\api\contract\v1\CreditCardMaskedType
79+
*/
80+
public function getCardInfo()
81+
{
82+
return $this->cardInfo;
83+
}
84+
85+
/**
86+
* Sets a new cardInfo
87+
*
88+
* @param \net\authorize\api\contract\v1\CreditCardMaskedType $cardInfo
89+
* @return self
90+
*/
91+
public function setCardInfo(\net\authorize\api\contract\v1\CreditCardMaskedType $cardInfo)
92+
{
93+
$this->cardInfo = $cardInfo;
94+
return $this;
95+
}
96+
97+
/**
98+
* Gets as paymentDetails
99+
*
100+
* @return \net\authorize\api\contract\v1\PaymentDetailsType
101+
*/
102+
public function getPaymentDetails()
103+
{
104+
return $this->paymentDetails;
105+
}
106+
107+
/**
108+
* Sets a new paymentDetails
109+
*
110+
* @param \net\authorize\api\contract\v1\PaymentDetailsType $paymentDetails
111+
* @return self
112+
*/
113+
public function setPaymentDetails(\net\authorize\api\contract\v1\PaymentDetailsType $paymentDetails)
114+
{
115+
$this->paymentDetails = $paymentDetails;
116+
return $this;
117+
}
118+
119+
120+
}
121+

0 commit comments

Comments
 (0)