-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_device.go
30 lines (28 loc) · 1.5 KB
/
model_device.go
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
/*
* dotcom-monitor
*
* dotcom-monitor API
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package dotcommonitor
type Device struct {
AvoidSimultaneousChecks bool `json:"Avoid_Simultaneous_Checks,omitempty"`
AlertSilenceMin int32 `json:"Alert_Silence_Min,omitempty"`
FalsePositiveCheck bool `json:"False_Positive_Check,omitempty"`
Locations []int32 `json:"Locations,omitempty"`
SendUptimeAlert bool `json:"Send_Uptime_Alert,omitempty"`
StatusDescription string `json:"Status_Description,omitempty"`
Postpone bool `json:"Postpone"`
OwnerDeviceId int32 `json:"Owner_Device_Id,omitempty"`
Frequency int32 `json:"Frequency,omitempty"`
FilterId int32 `json:"Filter_Id,omitempty"`
SchedulerId int32 `json:"Scheduler_Id,omitempty"`
NumberOfTasks int32 `json:"Number_Of_Tasks,omitempty"`
Id int32 `json:"Id,omitempty"`
PlatformId int32 `json:"Platform_Id,omitempty"`
PackageId int32 `json:"Package_Id,omitempty"`
Name string `json:"Name,omitempty"`
Notifications *DeviceNotifications `json:"Notifications,omitempty"`
}