-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathCommunicationNote.php
74 lines (70 loc) · 2.67 KB
/
CommunicationNote.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
namespace Picqer\Financials\Exact;
/**
* Class CommunicationNote.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ActivitiesCommunicationNotes
*
* @property string $ID The Primary key
* @property string $Account The account that is related to the communication note
* @property string $AccountName The name of the account
* @property RequestAttachment[] $Attachments Attachments linked to the communication note
* @property string $Campaign The campaign linked to the communication note
* @property string $CampaignDescription Description of the campaign
* @property string $Contact The contact person that is related to the communication note
* @property string $ContactFullName The name of the contact person
* @property string $Created Creation date
* @property string $Creator User ID of the creator
* @property string $CreatorFullName Name of the creator
* @property string $Date The date
* @property int $Division The division
* @property string $Document The document that is linked to the communication note
* @property string $DocumentSubject The subject of the document
* @property int $HID The human readable key
* @property string $Modified Last modified date
* @property string $Modifier User ID of the last modifier
* @property string $ModifierFullName Name of the last modifier
* @property string $Notes The notes of the communication note
* @property string $Opportunity The opportunity linked to the communication note
* @property string $OpportunityName The name of the opportunity
* @property int $Status Status: 0 = Void, 5 = Rejected, 10 = Draft, 20 = Open, 30 = Approved, 40 = Realized, 50 = Processed
* @property string $StatusDescription The description of the status
* @property string $Subject A short description of the communication note
* @property string $User The user that the communication note is assigned to
* @property string $UserFullName The user name
*/
class CommunicationNote extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AccountName',
'Attachments',
'Campaign',
'CampaignDescription',
'Contact',
'ContactFullName',
'Created',
'Creator',
'CreatorFullName',
'Date',
'Division',
'Document',
'DocumentSubject',
'HID',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
'Opportunity',
'OpportunityName',
'Status',
'StatusDescription',
'Subject',
'User',
'UserFullName',
];
protected $url = 'activities/CommunicationNotes';
}