Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 973 Bytes

File metadata and controls

36 lines (30 loc) · 973 Bytes

< Altapay - PHP Api - Order line

A order line object requries

  • description of the item
  • itemid (sku) of the item
  • quantity
  • Unit price excluding sales tax
$description = 'Brown sugar';
$itemid = 'brown_sugar';
$quantity = 2;
$price = 17.55;

$orderline = new \Altapay\Request\OrderLine(
    $description,
    $itemid,
    $quantity,
    $price
);
Method Description Type
taxAmount Tax amount should be the total tax amount for order line float
unitCode Measurement unit, e.g., kg. string
discount The discount in percent float
setGoodsType(string) The type of order line it is. Should be one of the following Can only be shipment, handling, item, digital, discount, gift_card, physical, sales_tax or subscription_model
imageUrl Full url for icon of the item string
$orderline->taxAmount = 5.75;
$orderline->setGoodsType('shipment');