forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerItem.php
50 lines (46 loc) · 1.39 KB
/
CustomerItem.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
namespace Picqer\Financials\Exact;
/**
* Class CustomerItem.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=LogisticsCustomerItems
*
* @property string $ID Primary key
* @property string $Account ID of the customer
* @property string $AccountCode Code of the customer account
* @property string $AccountName Name of the customer account
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $CustomerItemCode Customer’s item code
* @property int $Division Division code
* @property string $Item Item ID
* @property string $ItemCode Item code
* @property string $ItemDescription Description of Item
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
*/
class CustomerItem extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AccountCode',
'AccountName',
'Created',
'Creator',
'CreatorFullName',
'CustomerItemCode',
'Division',
'Item',
'ItemCode',
'ItemDescription',
'Modified',
'Modifier',
'ModifierFullName',
];
protected $url = 'logistics/CustomerItems';
}