D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
CreateHostedTokenizationRequest.php
back
Copy
<?php /* * This file was automatically generated. */ namespace App\Libs\OnlinePayments\Sdk\Domain; use App\Libs\Sdk\Domain\DataObject; use UnexpectedValueException; /** * @package OnlinePayments\Sdk\Domain */ class CreateHostedTokenizationRequest extends DataObject { /** * @var bool|null */ public ?bool $askConsumerConsent = null; /** * @var CreditCardSpecificInputHostedTokenization|null */ public ?CreditCardSpecificInputHostedTokenization $creditCardSpecificInput = null; /** * @var string|null */ public ?string $locale = null; /** * @var PaymentProductFiltersHostedTokenization|null */ public ?PaymentProductFiltersHostedTokenization $paymentProductFilters = null; /** * @var string|null */ public ?string $tokens = null; /** * @var string|null */ public ?string $variant = null; /** * @return bool|null */ public function getAskConsumerConsent(): ?bool { return $this->askConsumerConsent; } /** * @param bool|null $value */ public function setAskConsumerConsent(?bool $value): void { $this->askConsumerConsent = $value; } /** * @return CreditCardSpecificInputHostedTokenization|null */ public function getCreditCardSpecificInput(): ?CreditCardSpecificInputHostedTokenization { return $this->creditCardSpecificInput; } /** * @param CreditCardSpecificInputHostedTokenization|null $value */ public function setCreditCardSpecificInput(?CreditCardSpecificInputHostedTokenization $value): void { $this->creditCardSpecificInput = $value; } /** * @return string|null */ public function getLocale(): ?string { return $this->locale; } /** * @param string|null $value */ public function setLocale(?string $value): void { $this->locale = $value; } /** * @return PaymentProductFiltersHostedTokenization|null */ public function getPaymentProductFilters(): ?PaymentProductFiltersHostedTokenization { return $this->paymentProductFilters; } /** * @param PaymentProductFiltersHostedTokenization|null $value */ public function setPaymentProductFilters(?PaymentProductFiltersHostedTokenization $value): void { $this->paymentProductFilters = $value; } /** * @return string|null */ public function getTokens(): ?string { return $this->tokens; } /** * @param string|null $value */ public function setTokens(?string $value): void { $this->tokens = $value; } /** * @return string|null */ public function getVariant(): ?string { return $this->variant; } /** * @param string|null $value */ public function setVariant(?string $value): void { $this->variant = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->askConsumerConsent)) { $object->askConsumerConsent = $this->askConsumerConsent; } if (!is_null($this->creditCardSpecificInput)) { $object->creditCardSpecificInput = $this->creditCardSpecificInput->toObject(); } if (!is_null($this->locale)) { $object->locale = $this->locale; } if (!is_null($this->paymentProductFilters)) { $object->paymentProductFilters = $this->paymentProductFilters->toObject(); } if (!is_null($this->tokens)) { $object->tokens = $this->tokens; } if (!is_null($this->variant)) { $object->variant = $this->variant; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): CreateHostedTokenizationRequest { parent::fromObject($object); if (property_exists($object, 'askConsumerConsent')) { $this->askConsumerConsent = $object->askConsumerConsent; } if (property_exists($object, 'creditCardSpecificInput')) { if (!is_object($object->creditCardSpecificInput)) { throw new UnexpectedValueException('value \'' . print_r($object->creditCardSpecificInput, true) . '\' is not an object'); } $value = new CreditCardSpecificInputHostedTokenization(); $this->creditCardSpecificInput = $value->fromObject($object->creditCardSpecificInput); } if (property_exists($object, 'locale')) { $this->locale = $object->locale; } if (property_exists($object, 'paymentProductFilters')) { if (!is_object($object->paymentProductFilters)) { throw new UnexpectedValueException('value \'' . print_r($object->paymentProductFilters, true) . '\' is not an object'); } $value = new PaymentProductFiltersHostedTokenization(); $this->paymentProductFilters = $value->fromObject($object->paymentProductFilters); } if (property_exists($object, 'tokens')) { $this->tokens = $object->tokens; } if (property_exists($object, 'variant')) { $this->variant = $object->variant; } return $this; } }