-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathComplaint.php
68 lines (64 loc) · 2.37 KB
/
Complaint.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class Complaint.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ActivitiesComplaints
*
* @property string $ID The Primary key
* @property string $Account The account that is related to the complaint
* @property string $AccountName The name of the account
* @property string $AssignedTo The user that the complaint is assigned to
* @property string $AssignedToFullName The user name
* @property RequestAttachment[] $Attachments Attachments linked to the complaint
* @property string $Complaint A short description of the complaint
* @property string $Contact The contact person that is related to the complaint
* @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 int $Division The division
* @property string $Document The document that is linked to the complaint
* @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 $NextAction The date indicating by when the next action has to be taken
* @property string $Notes The notes of the complaint
* @property string $ReceiptDate The date the complaint was received
* @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
*/
class Complaint extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AccountName',
'AssignedTo',
'AssignedToFullName',
'Attachments',
'Complaint',
'Contact',
'ContactFullName',
'Created',
'Creator',
'CreatorFullName',
'Division',
'Document',
'DocumentSubject',
'HID',
'Modified',
'Modifier',
'ModifierFullName',
'NextAction',
'Notes',
'ReceiptDate',
'Status',
'StatusDescription',
];
protected $url = 'activities/Complaints';
}