for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/shopify-api-php
*
* (c) Slince <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Slince\Shopify\Manager\Refund;
use Slince\Shopify\Common\Model\Model;
use Slince\Shopify\Manager\Order\LineItem;
class RefundLineItem extends Model
{
/**
* @var int
protected $quantity;
protected $lineItemId;
* @var float
protected $subtotal;
protected $totalTax;
* @var LineItem
protected $lineItem;
* @return int
public function getQuantity()
return $this->quantity;
}
* @param int $quantity
* @return RefundLineItem
public function setQuantity($quantity)
$this->quantity = $quantity;
return $this;
public function getLineItemId()
return $this->lineItemId;
* @param int $lineItemId
public function setLineItemId($lineItemId)
$this->lineItemId = $lineItemId;
* @return float
public function getSubtotal()
return $this->subtotal;
* @param float $subtotal
public function setSubtotal($subtotal)
$this->subtotal = $subtotal;
public function getTotalTax()
return $this->totalTax;
* @param float $totalTax
public function setTotalTax($totalTax)
$this->totalTax = $totalTax;
* @return LineItem
public function getLineItem()
return $this->lineItem;
* @param LineItem $lineItem
public function setLineItem($lineItem)
$this->lineItem = $lineItem;