-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCompanyMerge.php
106 lines (103 loc) · 3.14 KB
/
CompanyMerge.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
namespace Spinen\ConnectWise\Models\v2018_5\Company;
use Spinen\ConnectWise\Support\Model;
/**
* Class CompanyMerge Version v2018_5
*
* Model for CompanyMerge
*
* @property int $toCompanyId
* @property string $accountNumber
* @property string $activities
* @property string $billingAddress
* @property string $billingContact
* @property string $billingTerms
* @property string $contacts
* @property string $dateAcquired
* @property string $documents
* @property string $fax
* @property string $identifier
* @property string $market
* @property string $name
* @property string $notes
* @property string $numberOfEmployees
* @property string $opportunities
* @property string $phone
* @property string $primaryAddress
* @property string $primaryContact
* @property string $projects
* @property string $revenue
* @property string $revenueYear
* @property string $services
* @property string $sicCode
* @property string $sites
* @property string $sourceList
* @property string $status
* @property string $taxCode
* @property string $territory
* @property string $timeZone
* @property string $type
* @property string $userDefinedField1
* @property string $userDefinedField10
* @property string $userDefinedField2
* @property string $userDefinedField3
* @property string $userDefinedField4
* @property string $userDefinedField5
* @property string $userDefinedField6
* @property string $userDefinedField7
* @property string $userDefinedField8
* @property string $userDefinedField9
* @property string $website
*/
class CompanyMerge extends Model
{
/**
* Properties that need to be casts to a specific object or type
*
* @var array
*/
protected $casts = [
'accountNumber' => 'string',
'activities' => 'string',
'billingAddress' => 'string',
'billingContact' => 'string',
'billingTerms' => 'string',
'contacts' => 'string',
'dateAcquired' => 'string',
'documents' => 'string',
'fax' => 'string',
'identifier' => 'string',
'market' => 'string',
'name' => 'string',
'notes' => 'string',
'numberOfEmployees' => 'string',
'opportunities' => 'string',
'phone' => 'string',
'primaryAddress' => 'string',
'primaryContact' => 'string',
'projects' => 'string',
'revenue' => 'string',
'revenueYear' => 'string',
'services' => 'string',
'sicCode' => 'string',
'sites' => 'string',
'sourceList' => 'string',
'status' => 'string',
'taxCode' => 'string',
'territory' => 'string',
'timeZone' => 'string',
'toCompanyId' => 'integer',
'type' => 'string',
'userDefinedField1' => 'string',
'userDefinedField10' => 'string',
'userDefinedField2' => 'string',
'userDefinedField3' => 'string',
'userDefinedField4' => 'string',
'userDefinedField5' => 'string',
'userDefinedField6' => 'string',
'userDefinedField7' => 'string',
'userDefinedField8' => 'string',
'userDefinedField9' => 'string',
'website' => 'string',
];
}