-
Notifications
You must be signed in to change notification settings - Fork 200
/
AccountDocumentFolder.php
51 lines (47 loc) · 1.57 KB
/
AccountDocumentFolder.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
51
<?php
namespace Picqer\Financials\Exact;
/**
* Class AccountDocumentFolder.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ReadCRMAccountDocumentFolders
*
* @property string $ID Primary key
* @property string $Code Document folder code
* @property int $CountOfDocuments Count of documents for current account in current folder
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $Description Document folder description
* @property int $Division Division code
* @property bool $IsRootConV2 IsRootConV2
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $ParentFolder Document folder parent folder ID
* @property int $Share Share status of this folder
* @property int $SharePointConnectionStatus SharePointConnectionStatus of this folder
* @property string $SharePointID SharePointID of this folder
*/
class AccountDocumentFolder extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'Code',
'CountOfDocuments',
'Created',
'Creator',
'CreatorFullName',
'Description',
'Division',
'IsRootConV2',
'Modified',
'Modifier',
'ModifierFullName',
'ParentFolder',
'Share',
'SharePointConnectionStatus',
'SharePointID',
];
protected $url = 'read/crm/AccountDocumentFolders';
}