forked from LiveCarta/PayPal-PHP-Server-SDK
Release 0.7.0
Beta Release 0.7.0 including: - Bug fixes - Updated model/function names - Updated models to reflect changes in APIs
This commit is contained in:
74
src/Models/RiskSupplementaryData.php
Normal file
74
src/Models/RiskSupplementaryData.php
Normal file
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/*
|
||||
* PaypalServerSdkLib
|
||||
*
|
||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||
*/
|
||||
|
||||
namespace PaypalServerSdkLib\Models;
|
||||
|
||||
use PaypalServerSdkLib\ApiHelper;
|
||||
use stdClass;
|
||||
|
||||
/**
|
||||
* Additional information necessary to evaluate the risk profile of a transaction.
|
||||
*/
|
||||
class RiskSupplementaryData implements \JsonSerializable
|
||||
{
|
||||
/**
|
||||
* @var ParticipantMetadata|null
|
||||
*/
|
||||
private $customer;
|
||||
|
||||
/**
|
||||
* Returns Customer.
|
||||
* Profile information of the sender or receiver.
|
||||
*/
|
||||
public function getCustomer(): ?ParticipantMetadata
|
||||
{
|
||||
return $this->customer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets Customer.
|
||||
* Profile information of the sender or receiver.
|
||||
*
|
||||
* @maps customer
|
||||
*/
|
||||
public function setCustomer(?ParticipantMetadata $customer): void
|
||||
{
|
||||
$this->customer = $customer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts the RiskSupplementaryData object to a human-readable string representation.
|
||||
*
|
||||
* @return string The string representation of the RiskSupplementaryData object.
|
||||
*/
|
||||
public function __toString(): string
|
||||
{
|
||||
return ApiHelper::stringify('RiskSupplementaryData', ['customer' => $this->customer]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Encode this object to JSON
|
||||
*
|
||||
* @param bool $asArrayWhenEmpty Whether to serialize this model as an array whenever no fields
|
||||
* are set. (default: false)
|
||||
*
|
||||
* @return array|stdClass
|
||||
*/
|
||||
#[\ReturnTypeWillChange] // @phan-suppress-current-line PhanUndeclaredClassAttribute for (php < 8.1)
|
||||
public function jsonSerialize(bool $asArrayWhenEmpty = false)
|
||||
{
|
||||
$json = [];
|
||||
if (isset($this->customer)) {
|
||||
$json['customer'] = $this->customer;
|
||||
}
|
||||
|
||||
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user