D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
TokenCardData.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 TokenCardData extends DataObject { /** * @var CardBinDetails|null */ public ?CardBinDetails $cardBinDetails = null; /** * @var CardWithoutCvv|null */ public ?CardWithoutCvv $cardWithoutCvv = null; /** * @var string|null */ public ?string $cobrandSelectionIndicator = null; /** * @return CardBinDetails|null */ public function getCardBinDetails(): ?CardBinDetails { return $this->cardBinDetails; } /** * @param CardBinDetails|null $value */ public function setCardBinDetails(?CardBinDetails $value): void { $this->cardBinDetails = $value; } /** * @return CardWithoutCvv|null */ public function getCardWithoutCvv(): ?CardWithoutCvv { return $this->cardWithoutCvv; } /** * @param CardWithoutCvv|null $value */ public function setCardWithoutCvv(?CardWithoutCvv $value): void { $this->cardWithoutCvv = $value; } /** * @return string|null */ public function getCobrandSelectionIndicator(): ?string { return $this->cobrandSelectionIndicator; } /** * @param string|null $value */ public function setCobrandSelectionIndicator(?string $value): void { $this->cobrandSelectionIndicator = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->cardBinDetails)) { $object->cardBinDetails = $this->cardBinDetails->toObject(); } if (!is_null($this->cardWithoutCvv)) { $object->cardWithoutCvv = $this->cardWithoutCvv->toObject(); } if (!is_null($this->cobrandSelectionIndicator)) { $object->cobrandSelectionIndicator = $this->cobrandSelectionIndicator; } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): TokenCardData { parent::fromObject($object); if (property_exists($object, 'cardBinDetails')) { if (!is_object($object->cardBinDetails)) { throw new UnexpectedValueException('value \'' . print_r($object->cardBinDetails, true) . '\' is not an object'); } $value = new CardBinDetails(); $this->cardBinDetails = $value->fromObject($object->cardBinDetails); } if (property_exists($object, 'cardWithoutCvv')) { if (!is_object($object->cardWithoutCvv)) { throw new UnexpectedValueException('value \'' . print_r($object->cardWithoutCvv, true) . '\' is not an object'); } $value = new CardWithoutCvv(); $this->cardWithoutCvv = $value->fromObject($object->cardWithoutCvv); } if (property_exists($object, 'cobrandSelectionIndicator')) { $this->cobrandSelectionIndicator = $object->cobrandSelectionIndicator; } return $this; } }