2018-10-15 14:40:34 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
2018-10-16 13:42:43 +02:00
|
|
|
namespace App\DataMapper;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
class InvoiceItem
|
|
|
|
{
|
|
|
|
|
2019-09-03 05:39:35 +02:00
|
|
|
private $quantity;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
private $cost;
|
|
|
|
|
|
|
|
private $product_key;
|
|
|
|
|
|
|
|
private $notes;
|
|
|
|
|
|
|
|
private $discount;
|
|
|
|
|
|
|
|
private $is_amount_discount;
|
|
|
|
|
|
|
|
private $tax_name1;
|
|
|
|
|
|
|
|
private $tax_rate1;
|
|
|
|
|
|
|
|
private $tax_name2;
|
|
|
|
|
|
|
|
private $tax_rate2;
|
|
|
|
|
|
|
|
private $sort_id;
|
|
|
|
|
|
|
|
private $line_total;
|
|
|
|
|
2019-09-03 05:39:35 +02:00
|
|
|
private $date;
|
|
|
|
|
|
|
|
private $custom_value1;
|
|
|
|
|
|
|
|
private $custom_value2;
|
|
|
|
|
|
|
|
private $custom_value3;
|
|
|
|
|
|
|
|
private $custom_value4;
|
|
|
|
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
}
|