-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathManagedDevicesIntegration.php
54 lines (51 loc) · 1.69 KB
/
ManagedDevicesIntegration.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
<?php
namespace Spinen\ConnectWise\Models\v2018_5\Company;
use Spinen\ConnectWise\Support\Model;
/**
* Class ManagedDevicesIntegration Version v2018_5
*
* Model for ManagedDevicesIntegration
*
* @property IntegratorLoginReference $integratorLogin
* @property Metadata $_info
* @property SystemDepartmentReference $defaultDepartment
* @property SystemLocationReference $defaultLocation
* @property bool $configBillCustomerFlag
* @property bool $disableNewCrossReferencesFlag
* @property bool $matchOnSerialNumberFlag
* @property int $id
* @property string $defaultBillingLevel
* @property string $globalLoginPassword
* @property string $globalLoginUsername
* @property string $loginBy
* @property string $managementItSetupType
* @property string $name
* @property string $portalUrl
* @property string $solution
*/
class ManagedDevicesIntegration extends Model
{
/**
* Properties that need to be casts to a specific object or type
*
* @var array
*/
protected $casts = [
'_info' => Metadata::class,
'configBillCustomerFlag' => 'boolean',
'defaultBillingLevel' => 'string',
'defaultDepartment' => SystemDepartmentReference::class,
'defaultLocation' => SystemLocationReference::class,
'disableNewCrossReferencesFlag' => 'boolean',
'globalLoginPassword' => 'string',
'globalLoginUsername' => 'string',
'id' => 'integer',
'integratorLogin' => IntegratorLoginReference::class,
'loginBy' => 'string',
'managementItSetupType' => 'string',
'matchOnSerialNumberFlag' => 'boolean',
'name' => 'string',
'portalUrl' => 'string',
'solution' => 'string',
];
}