forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccountantInfo.php
46 lines (42 loc) · 1.23 KB
/
AccountantInfo.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class AccountantInfo.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=SystemSystemAccountantInfo
*
* @property string $ID The account ID of the accountant.
* @property string $AddressLine1 First address line.
* @property string $AddressLine2 Second address line.
* @property string $AddressLine3 Third address line.
* @property string $City City.
* @property string $Email Email.
* @property bool $IsAccountant Indicates if the customer is an accountant himself.
* @property binary $Logo Logo.
* @property string $MenuLogoUrl Url to retrieve the logo of the accountant.
* @property string $Name The name of the accountant.
* @property string $Phone Phone.
* @property string $Postcode Postcode.
* @property string $Website Website.
*/
class AccountantInfo extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'AddressLine1',
'AddressLine2',
'AddressLine3',
'City',
'Email',
'IsAccountant',
'Logo',
'MenuLogoUrl',
'Name',
'Phone',
'Postcode',
'Website',
];
protected $url = 'system/AccountantInfo';
}