File: D:/HostingSpaces/farmfun/reserveren.farmfun.be/app/Komma/Teamleader/Resources/Invoice.php
<?php
namespace App\Komma\Teamleader\Resources;
use App\Komma\Teamleader\Base\ApiResource;
use Carbon\Carbon;
class Invoice extends ApiResource
{
public string $id;
public object $department;
public ?string $invoice_number;
public Carbon $invoice_date;
public string $status;
public ?Carbon $due_on;
public bool $paid;
public ?Carbon $paid_at;
public bool $sent;
public ?string $purchase_order_number;
public ?string $payment_reference;
public object $invoicee;
public object $total;
public object $currency_exchange_rate;
public Carbon $added_at;
public Carbon $created_at;
public Carbon $updated_at;
public string $web_url;
public object $file;
public ?object $deal;
public ?object $project;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected array $_dates = [
'invoice_date',
'due_on',
'added_at',
'paid_at',
'created_at',
'updated_at',
];
}