File manager - Edit - /var/www/payraty/hris/vendor/authorizenet/authorizenet/lib/net/authorize/api/contract/v1/CreateCustomerProfileResponse.php
Back
<?php namespace net\authorize\api\contract\v1; /** * Class representing CreateCustomerProfileResponse */ class CreateCustomerProfileResponse extends ANetApiResponseType { /** * @property string $customerProfileId */ private $customerProfileId = null; /** * @property string[] $customerPaymentProfileIdList */ private $customerPaymentProfileIdList = null; /** * @property string[] $customerShippingAddressIdList */ private $customerShippingAddressIdList = null; /** * @property string[] $validationDirectResponseList */ private $validationDirectResponseList = null; /** * Gets as customerProfileId * * @return string */ public function getCustomerProfileId() { return $this->customerProfileId; } /** * Sets a new customerProfileId * * @param string $customerProfileId * @return self */ public function setCustomerProfileId($customerProfileId) { $this->customerProfileId = $customerProfileId; return $this; } /** * Adds as numericString * * @return self * @param string $numericString */ public function addToCustomerPaymentProfileIdList($numericString) { $this->customerPaymentProfileIdList[] = $numericString; return $this; } /** * isset customerPaymentProfileIdList * * @param scalar $index * @return boolean */ public function issetCustomerPaymentProfileIdList($index) { return isset($this->customerPaymentProfileIdList[$index]); } /** * unset customerPaymentProfileIdList * * @param scalar $index * @return void */ public function unsetCustomerPaymentProfileIdList($index) { unset($this->customerPaymentProfileIdList[$index]); } /** * Gets as customerPaymentProfileIdList * * @return string[] */ public function getCustomerPaymentProfileIdList() { return $this->customerPaymentProfileIdList; } /** * Sets a new customerPaymentProfileIdList * * @param string $customerPaymentProfileIdList * @return self */ public function setCustomerPaymentProfileIdList(array $customerPaymentProfileIdList) { $this->customerPaymentProfileIdList = $customerPaymentProfileIdList; return $this; } /** * Adds as numericString * * @return self * @param string $numericString */ public function addToCustomerShippingAddressIdList($numericString) { $this->customerShippingAddressIdList[] = $numericString; return $this; } /** * isset customerShippingAddressIdList * * @param scalar $index * @return boolean */ public function issetCustomerShippingAddressIdList($index) { return isset($this->customerShippingAddressIdList[$index]); } /** * unset customerShippingAddressIdList * * @param scalar $index * @return void */ public function unsetCustomerShippingAddressIdList($index) { unset($this->customerShippingAddressIdList[$index]); } /** * Gets as customerShippingAddressIdList * * @return string[] */ public function getCustomerShippingAddressIdList() { return $this->customerShippingAddressIdList; } /** * Sets a new customerShippingAddressIdList * * @param string $customerShippingAddressIdList * @return self */ public function setCustomerShippingAddressIdList(array $customerShippingAddressIdList) { $this->customerShippingAddressIdList = $customerShippingAddressIdList; return $this; } /** * Adds as string * * @return self * @param string $string */ public function addToValidationDirectResponseList($string) { $this->validationDirectResponseList[] = $string; return $this; } /** * isset validationDirectResponseList * * @param scalar $index * @return boolean */ public function issetValidationDirectResponseList($index) { return isset($this->validationDirectResponseList[$index]); } /** * unset validationDirectResponseList * * @param scalar $index * @return void */ public function unsetValidationDirectResponseList($index) { unset($this->validationDirectResponseList[$index]); } /** * Gets as validationDirectResponseList * * @return string[] */ public function getValidationDirectResponseList() { return $this->validationDirectResponseList; } /** * Sets a new validationDirectResponseList * * @param string[] $validationDirectResponseList * @return self */ public function setValidationDirectResponseList(array $validationDirectResponseList) { $this->validationDirectResponseList = $validationDirectResponseList; return $this; } // Json Set Code public function set($data) { if(is_array($data) || is_object($data)) { $mapper = \net\authorize\util\Mapper::Instance(); foreach($data AS $key => $value) { $classDetails = $mapper->getClass(get_class($this) , $key); if($classDetails !== NULL ) { if ($classDetails->isArray) { if ($classDetails->isCustomDefined) { foreach($value AS $keyChild => $valueChild) { $type = new $classDetails->className; $type->set($valueChild); $this->{'addTo' . $key}($type); } } else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) { foreach($value AS $keyChild => $valueChild) { $type = new \DateTime($valueChild); $this->{'addTo' . $key}($type); } } else { foreach($value AS $keyChild => $valueChild) { $this->{'addTo' . $key}($valueChild); } } } else { if ($classDetails->isCustomDefined){ $type = new $classDetails->className; $type->set($value); $this->{'set' . $key}($type); } else if ($classDetails->className === 'DateTime' || $classDetails->className === 'Date' ) { $type = new \DateTime($value); $this->{'set' . $key}($type); } else { $this->{'set' . $key}($value); } } } } } } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings