mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-10 21:08:41 +00:00
66 lines
1.2 KiB
PHP
66 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
use PayPal\Common\PayPalModel;
|
|
|
|
/**
|
|
* Class CustomAmount
|
|
*
|
|
* The custom amount applied on an invoice. If you include a label, the amount cannot be empty.
|
|
*
|
|
* @package PayPal\Api
|
|
*
|
|
* @property string label
|
|
* @property \PayPal\Api\Currency amount
|
|
*/
|
|
class CustomAmount extends PayPalModel
|
|
{
|
|
/**
|
|
* The custom amount label. Maximum length is 25 characters.
|
|
*
|
|
* @param string $label
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setLabel($label)
|
|
{
|
|
$this->label = $label;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* The custom amount label. Maximum length is 25 characters.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLabel()
|
|
{
|
|
return $this->label;
|
|
}
|
|
|
|
/**
|
|
* The custom amount value. Valid range is from -999999.99 to 999999.99.
|
|
*
|
|
* @param \PayPal\Api\Currency $amount
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setAmount($amount)
|
|
{
|
|
$this->amount = $amount;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* The custom amount value. Valid range is from -999999.99 to 999999.99.
|
|
*
|
|
* @return \PayPal\Api\Currency
|
|
*/
|
|
public function getAmount()
|
|
{
|
|
return $this->amount;
|
|
}
|
|
|
|
}
|