-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathServiceEmailTemplate.php
56 lines (53 loc) · 1.62 KB
/
ServiceEmailTemplate.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
<?php
namespace Spinen\ConnectWise\Models\v2018_6\Service;
use Spinen\ConnectWise\Support\Model;
/**
* Class ServiceEmailTemplate Version v2018_6
*
* Model for ServiceEmailTemplate
*
* @property BoardReference $serviceBoard
* @property Metadata $_info
* @property ServiceStatusReference $serviceStatus
* @property ServiceSurveyReference $serviceSurvey
* @property bool $copySenderFlag
* @property bool $externalContactNotifications
* @property bool $internalContactNotifications
* @property bool $resourceRecordsFlag
* @property bool $tasksFlag
* @property bool $useSenderFlag
* @property int $id
* @property string $body
* @property string $emailAddress
* @property string $firstName
* @property string $lastName
* @property string $subject
* @property string $type
*/
class ServiceEmailTemplate extends Model
{
/**
* Properties that need to be casts to a specific object or type
*
* @var array
*/
protected $casts = [
'_info' => Metadata::class,
'body' => 'string',
'copySenderFlag' => 'boolean',
'emailAddress' => 'string',
'externalContactNotifications' => 'boolean',
'firstName' => 'string',
'id' => 'integer',
'internalContactNotifications' => 'boolean',
'lastName' => 'string',
'resourceRecordsFlag' => 'boolean',
'serviceBoard' => BoardReference::class,
'serviceStatus' => ServiceStatusReference::class,
'serviceSurvey' => ServiceSurveyReference::class,
'subject' => 'string',
'tasksFlag' => 'boolean',
'type' => 'string',
'useSenderFlag' => 'boolean',
];
}