forked from LiveCarta/PayPal-PHP-SDK
93 lines
1.6 KiB
PHP
93 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace PayPal\Api;
|
|
|
|
use PayPal\Common\PPModel;
|
|
|
|
/**
|
|
* Class ItemList
|
|
*
|
|
* @property array|\PayPal\Api\Item items
|
|
* @property \PayPal\Api\ShippingAddress shipping_address
|
|
*/
|
|
class ItemList extends PPModel
|
|
{
|
|
/**
|
|
* Set Items
|
|
* List of Items
|
|
*
|
|
* @param array|\PayPal\Api\Item $items
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setItems($items)
|
|
{
|
|
$this->items = $items;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get Items
|
|
* List of items
|
|
*
|
|
* @return \PayPal\Api\Item
|
|
*/
|
|
public function getItems()
|
|
{
|
|
return $this->items;
|
|
}
|
|
|
|
/**
|
|
* Set Shipping Address
|
|
*
|
|
* @param \PayPal\Api\ShippingAddress $shipping_address
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setShippingAddress($shipping_address)
|
|
{
|
|
$this->shipping_address = $shipping_address;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get Shipping Address
|
|
*
|
|
* @return \PayPal\Api\ShippingAddress
|
|
*/
|
|
public function getShippingAddress()
|
|
{
|
|
return $this->shipping_address;
|
|
}
|
|
|
|
/**
|
|
* Set Shipping Address
|
|
*
|
|
* @param \PayPal\Api\ShippingAddress $shipping_address
|
|
*
|
|
* @deprecated Use setShippingAddress
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setShipping_address($shipping_address)
|
|
{
|
|
$this->shipping_address = $shipping_address;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get Shipping Address
|
|
*
|
|
* @deprecated Use getShippingAddress
|
|
*
|
|
* @return \PayPal\Api\ShippingAddress
|
|
*/
|
|
public function getShipping_address()
|
|
{
|
|
return $this->shipping_address;
|
|
}
|
|
}
|