|
| 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 | + |
0 commit comments