Skip to content

Commit 3176d1f

Browse files
author
Sunny Raj Rathod
committed
- Updated sdk for Q1 changes.
1 parent 976e57d commit 3176d1f

2 files changed

Lines changed: 129 additions & 0 deletions

File tree

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 CustomerProfileIdType
7+
*
8+
*
9+
* XSD Type: customerProfileIdType
10+
*/
11+
class CustomerProfileIdType
12+
{
13+
14+
/**
15+
* @property string $customerProfileId
16+
*/
17+
private $customerProfileId = null;
18+
19+
/**
20+
* @property string $customerPaymentProfileId
21+
*/
22+
private $customerPaymentProfileId = null;
23+
24+
/**
25+
* @property string $customerAddressId
26+
*/
27+
private $customerAddressId = null;
28+
29+
/**
30+
* Gets as customerProfileId
31+
*
32+
* @return string
33+
*/
34+
public function getCustomerProfileId()
35+
{
36+
return $this->customerProfileId;
37+
}
38+
39+
/**
40+
* Sets a new customerProfileId
41+
*
42+
* @param string $customerProfileId
43+
* @return self
44+
*/
45+
public function setCustomerProfileId($customerProfileId)
46+
{
47+
$this->customerProfileId = $customerProfileId;
48+
return $this;
49+
}
50+
51+
/**
52+
* Gets as customerPaymentProfileId
53+
*
54+
* @return string
55+
*/
56+
public function getCustomerPaymentProfileId()
57+
{
58+
return $this->customerPaymentProfileId;
59+
}
60+
61+
/**
62+
* Sets a new customerPaymentProfileId
63+
*
64+
* @param string $customerPaymentProfileId
65+
* @return self
66+
*/
67+
public function setCustomerPaymentProfileId($customerPaymentProfileId)
68+
{
69+
$this->customerPaymentProfileId = $customerPaymentProfileId;
70+
return $this;
71+
}
72+
73+
/**
74+
* Gets as customerAddressId
75+
*
76+
* @return string
77+
*/
78+
public function getCustomerAddressId()
79+
{
80+
return $this->customerAddressId;
81+
}
82+
83+
/**
84+
* Sets a new customerAddressId
85+
*
86+
* @param string $customerAddressId
87+
* @return self
88+
*/
89+
public function setCustomerAddressId($customerAddressId)
90+
{
91+
$this->customerAddressId = $customerAddressId;
92+
return $this;
93+
}
94+
95+
96+
}
97+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
net\authorize\api\contract\v1\CustomerProfileIdType:
2+
properties:
3+
customerProfileId:
4+
expose: true
5+
access_type: public_method
6+
serialized_name: customerProfileId
7+
xml_element:
8+
namespace: AnetApi/xml/v1/schema/AnetApiSchema.xsd
9+
accessor:
10+
getter: getCustomerProfileId
11+
setter: setCustomerProfileId
12+
type: string
13+
customerPaymentProfileId:
14+
expose: true
15+
access_type: public_method
16+
serialized_name: customerPaymentProfileId
17+
xml_element:
18+
namespace: AnetApi/xml/v1/schema/AnetApiSchema.xsd
19+
accessor:
20+
getter: getCustomerPaymentProfileId
21+
setter: setCustomerPaymentProfileId
22+
type: string
23+
customerAddressId:
24+
expose: true
25+
access_type: public_method
26+
serialized_name: customerAddressId
27+
xml_element:
28+
namespace: AnetApi/xml/v1/schema/AnetApiSchema.xsd
29+
accessor:
30+
getter: getCustomerAddressId
31+
setter: setCustomerAddressId
32+
type: string

0 commit comments

Comments
 (0)