forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DefaultMailbox.php
42 lines (38 loc) · 1.4 KB
/
DefaultMailbox.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class DefaultMailbox.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ReadMailboxDefaultMailbox
*
* @property string $ID Primary key
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $Description Extra description of the mailbox
* @property int $ForDivision Only used when this mailbox is used for one specific administration, for example invoices to this mailbox will only be booked in this administration
* @property bool $IsScanServiceMailbox Indicates whether this service is used for messages returned by the scanning service
* @property string $Mailbox E-mail address-like format, for example [email protected]
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ValidFrom Date that this mailbox became valid
* @property string $ValidTo Date that this mailbox will not be valid anymore
*/
class DefaultMailbox extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Created',
'Creator',
'Description',
'ForDivision',
'IsScanServiceMailbox',
'Mailbox',
'Modified',
'Modifier',
'ValidFrom',
'ValidTo',
];
protected $url = 'read/mailbox/DefaultMailbox';
}