File manager - Edit - /var/www/payraty/hris/vendor/authorizenet/authorizenet/lib/net/authorize/api/contract/v1/GetCustomerProfileResponse.php
Back
<?php namespace net\authorize\api\contract\v1; /** * Class representing GetCustomerProfileResponse */ class GetCustomerProfileResponse extends ANetApiResponseType { /** * @property \net\authorize\api\contract\v1\CustomerProfileMaskedType $profile */ private $profile = null; /** * @property string[] $subscriptionIds */ private $subscriptionIds = null; /** * Gets as profile * * @return \net\authorize\api\contract\v1\CustomerProfileMaskedType */ public function getProfile() { return $this->profile; } /** * Sets a new profile * * @param \net\authorize\api\contract\v1\CustomerProfileMaskedType $profile * @return self */ public function setProfile(\net\authorize\api\contract\v1\CustomerProfileMaskedType $profile) { $this->profile = $profile; return $this; } /** * Adds as subscriptionId * * @return self * @param string $subscriptionId */ public function addToSubscriptionIds($subscriptionId) { $this->subscriptionIds[] = $subscriptionId; return $this; } /** * isset subscriptionIds * * @param scalar $index * @return boolean */ public function issetSubscriptionIds($index) { return isset($this->subscriptionIds[$index]); } /** * unset subscriptionIds * * @param scalar $index * @return void */ public function unsetSubscriptionIds($index) { unset($this->subscriptionIds[$index]); } /** * Gets as subscriptionIds * * @return string[] */ public function getSubscriptionIds() { return $this->subscriptionIds; } /** * Sets a new subscriptionIds * * @param string $subscriptionIds * @return self */ public function setSubscriptionIds(array $subscriptionIds) { $this->subscriptionIds = $subscriptionIds; 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