D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
OnlinePayments
/
Sdk
/
Domain
/
Filename :
FraudFields.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 FraudFields extends DataObject { /** * @var string|null */ public ?string $blackListData = null; /** * @var string|null * @deprecated Use order.customer.device.ipAddress instead. The IP Address of the customer that is making the payment */ public ?string $customerIpAddress = null; /** * @var string[]|null */ public ?array $productCategories = null; /** * @return string|null */ public function getBlackListData(): ?string { return $this->blackListData; } /** * @param string|null $value */ public function setBlackListData(?string $value): void { $this->blackListData = $value; } /** * @return string|null * @deprecated Use order.customer.device.ipAddress instead. The IP Address of the customer that is making the payment */ public function getCustomerIpAddress(): ?string { return $this->customerIpAddress; } /** * @param string|null $value * @deprecated Use order.customer.device.ipAddress instead. The IP Address of the customer that is making the payment */ public function setCustomerIpAddress(?string $value): void { $this->customerIpAddress = $value; } /** * @return string[]|null */ public function getProductCategories(): ?array { return $this->productCategories; } /** * @param string[]|null $value */ public function setProductCategories(?array $value): void { $this->productCategories = $value; } /** * @return object */ public function toObject(): object { $object = parent::toObject(); if (!is_null($this->blackListData)) { $object->blackListData = $this->blackListData; } if (!is_null($this->customerIpAddress)) { $object->customerIpAddress = $this->customerIpAddress; } if (!is_null($this->productCategories)) { $object->productCategories = []; foreach ($this->productCategories as $element) { if (!is_null($element)) { $object->productCategories[] = $element; } } } return $object; } /** * @param object $object * @return $this * @throws UnexpectedValueException */ public function fromObject(object $object): FraudFields { parent::fromObject($object); if (property_exists($object, 'blackListData')) { $this->blackListData = $object->blackListData; } if (property_exists($object, 'customerIpAddress')) { $this->customerIpAddress = $object->customerIpAddress; } if (property_exists($object, 'productCategories')) { if (!is_array($object->productCategories) && !is_object($object->productCategories)) { throw new UnexpectedValueException('value \'' . print_r($object->productCategories, true) . '\' is not an array or object'); } $this->productCategories = []; foreach ($object->productCategories as $element) { $this->productCategories[] = $element; } } return $this; } }