20 lines
483 B
Go
20 lines
483 B
Go
package zabbix
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
|
|
type HostGet struct {
|
|
GroupIds []string `json:"groupids,omitempty"`
|
|
DServiceIds []string `json:"dserviceids,omitempty"`
|
|
GraphIds []string `json:"graphids,omitempty"`
|
|
HostIds []string `json:"hostids,omitempty"`
|
|
HttpTestIds []string `json:"httptestids,omitempty"`
|
|
InterfaceIds []string `json:"interfaceids,omitempty"`
|
|
ItemIds []string `json:"itemids,omitempty"`
|
|
MaintenanceIds []string `json:"maintenanceids,omitempty"`
|
|
commonGet
|
|
|
|
}
|