-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathInvoice.php
More file actions
28 lines (22 loc) · 770 Bytes
/
Invoice.php
File metadata and controls
28 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
declare(strict_types=1);
namespace Sysix\LexOffice\Clients;
use Sysix\LexOffice\BaseClient;
use Sysix\LexOffice\Clients\Traits\CreateFinalizeTrait;
use Sysix\LexOffice\Clients\Traits\DocumentClientTrait;
use Sysix\LexOffice\Clients\Traits\FileClientWithAcceptHeaderTrait;
use Sysix\LexOffice\Clients\Traits\GetTrait;
use Sysix\LexOffice\Clients\Traits\PursueFinalizeTrait;
use Sysix\LexOffice\Clients\Traits\VoucherListTrait;
class Invoice extends BaseClient
{
use CreateFinalizeTrait;
use DocumentClientTrait;
use FileClientWithAcceptHeaderTrait;
use GetTrait;
use PursueFinalizeTrait;
use VoucherListTrait;
protected string $resource = 'invoices';
/** @var string[] */
protected array $voucherListTypes = ['invoice'];
}