forked from LiveCarta/PayPal-PHP-SDK
- Updated OpenId classes to be in API namespace - Updated PP Naming Convention to PayPal Naming Convention - FormatConverter Class got its own namespace - Handlers are grouped in Handler namespace - Samples and Tests Updated Accordingly
211 lines
4.1 KiB
PHP
211 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
use PayPal\Common\PayPalModel;
|
|
|
|
/**
|
|
* Class InvoiceItem
|
|
*
|
|
* Information about a single line item.
|
|
*
|
|
* @package PayPal\Api
|
|
*
|
|
* @property string name
|
|
* @property string description
|
|
* @property \PayPal\Api\number quantity
|
|
* @property \PayPal\Api\Currency unit_price
|
|
* @property \PayPal\Api\Tax tax
|
|
* @property string date
|
|
* @property \PayPal\Api\Cost discount
|
|
*/
|
|
class InvoiceItem extends PayPalModel
|
|
{
|
|
/**
|
|
* Name of the item. 60 characters max.
|
|
*
|
|
* @param string $name
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Name of the item. 60 characters max.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Description of the item. 1000 characters max.
|
|
*
|
|
* @param string $description
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setDescription($description)
|
|
{
|
|
$this->description = $description;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Description of the item. 1000 characters max.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
/**
|
|
* Quantity of the item. Range of 0 to 9999.999.
|
|
*
|
|
* @param \PayPal\Api\number $quantity
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setQuantity($quantity)
|
|
{
|
|
$this->quantity = $quantity;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Quantity of the item. Range of 0 to 9999.999.
|
|
*
|
|
* @return \PayPal\Api\number
|
|
*/
|
|
public function getQuantity()
|
|
{
|
|
return $this->quantity;
|
|
}
|
|
|
|
/**
|
|
* Unit price of the item. Range of -999999.99 to 999999.99.
|
|
*
|
|
* @param \PayPal\Api\Currency $unit_price
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setUnitPrice($unit_price)
|
|
{
|
|
$this->unit_price = $unit_price;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Unit price of the item. Range of -999999.99 to 999999.99.
|
|
*
|
|
* @return \PayPal\Api\Currency
|
|
*/
|
|
public function getUnitPrice()
|
|
{
|
|
return $this->unit_price;
|
|
}
|
|
|
|
/**
|
|
* Unit price of the item. Range of -999999.99 to 999999.99.
|
|
*
|
|
* @deprecated Instead use setUnitPrice
|
|
*
|
|
* @param \PayPal\Api\Currency $unit_price
|
|
* @return $this
|
|
*/
|
|
public function setUnit_price($unit_price)
|
|
{
|
|
$this->unit_price = $unit_price;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Unit price of the item. Range of -999999.99 to 999999.99.
|
|
* @deprecated Instead use getUnitPrice
|
|
*
|
|
* @return \PayPal\Api\Currency
|
|
*/
|
|
public function getUnit_price()
|
|
{
|
|
return $this->unit_price;
|
|
}
|
|
|
|
/**
|
|
* Tax associated with the item.
|
|
*
|
|
* @param \PayPal\Api\Tax $tax
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setTax($tax)
|
|
{
|
|
$this->tax = $tax;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Tax associated with the item.
|
|
*
|
|
* @return \PayPal\Api\Tax
|
|
*/
|
|
public function getTax()
|
|
{
|
|
return $this->tax;
|
|
}
|
|
|
|
/**
|
|
* Date on which the item or service was provided. Date format yyyy-MM-dd z, as defined in [ISO8601](http://tools.ietf.org/html/rfc3339#section-5.6).
|
|
*
|
|
* @param string $date
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setDate($date)
|
|
{
|
|
$this->date = $date;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Date on which the item or service was provided. Date format yyyy-MM-dd z, as defined in [ISO8601](http://tools.ietf.org/html/rfc3339#section-5.6).
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDate()
|
|
{
|
|
return $this->date;
|
|
}
|
|
|
|
/**
|
|
* Item discount in percent or amount.
|
|
*
|
|
* @param \PayPal\Api\Cost $discount
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setDiscount($discount)
|
|
{
|
|
$this->discount = $discount;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Item discount in percent or amount.
|
|
*
|
|
* @return \PayPal\Api\Cost
|
|
*/
|
|
public function getDiscount()
|
|
{
|
|
return $this->discount;
|
|
}
|
|
|
|
}
|