1
0

Beta Release 0.5.0 (#3)

* Automated commit message

* Automated commit message

* Automated commit message

* Automated commit message

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
This commit is contained in:
Dani Kirby
2024-09-09 12:10:34 -05:00
committed by GitHub
parent c9cb1ad04a
commit 6b43a4225b
732 changed files with 73569 additions and 1 deletions

107
src/Models/Money.php Normal file
View File

@@ -0,0 +1,107 @@
<?php
declare(strict_types=1);
/*
* PaypalServerSDKLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
namespace PaypalServerSDKLib\Models;
use stdClass;
/**
* The currency and amount for a financial transaction, such as a balance or payment due.
*/
class Money implements \JsonSerializable
{
/**
* @var string
*/
private $currencyCode;
/**
* @var string
*/
private $value;
/**
* @param string $currencyCode
* @param string $value
*/
public function __construct(string $currencyCode, string $value)
{
$this->currencyCode = $currencyCode;
$this->value = $value;
}
/**
* Returns Currency Code.
* The [three-character ISO-4217 currency code](/api/rest/reference/currency-codes/) that identifies
* the currency.
*/
public function getCurrencyCode(): string
{
return $this->currencyCode;
}
/**
* Sets Currency Code.
* The [three-character ISO-4217 currency code](/api/rest/reference/currency-codes/) that identifies
* the currency.
*
* @required
* @maps currency_code
*/
public function setCurrencyCode(string $currencyCode): void
{
$this->currencyCode = $currencyCode;
}
/**
* Returns Value.
* The value, which might be:<ul><li>An integer for currencies like `JPY` that are not typically
* fractional.</li><li>A decimal fraction for currencies like `TND` that are subdivided into
* thousandths.</li></ul>For the required number of decimal places for a currency code, see [Currency
* Codes](/api/rest/reference/currency-codes/).
*/
public function getValue(): string
{
return $this->value;
}
/**
* Sets Value.
* The value, which might be:<ul><li>An integer for currencies like `JPY` that are not typically
* fractional.</li><li>A decimal fraction for currencies like `TND` that are subdivided into
* thousandths.</li></ul>For the required number of decimal places for a currency code, see [Currency
* Codes](/api/rest/reference/currency-codes/).
*
* @required
* @maps value
*/
public function setValue(string $value): void
{
$this->value = $value;
}
/**
* 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 = [];
$json['currency_code'] = $this->currencyCode;
$json['value'] = $this->value;
return (!$asArrayWhenEmpty && empty($json)) ? new stdClass() : $json;
}
}