Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomDataType ¶
type CustomDataType struct { // VendorId corresponds to the JSON schema field "vendorId". VendorId string `json:"vendorId" yaml:"vendorId"` }
This class does not get 'AdditionalProperties = false' in the schema generation, so it can be extended with arbitrary JSON properties to allow adding custom data.
func (*CustomDataType) UnmarshalJSON ¶
func (j *CustomDataType) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler.
type GenericDeviceModelStatusEnumType ¶
type GenericDeviceModelStatusEnumType string
const GenericDeviceModelStatusEnumTypeAccepted GenericDeviceModelStatusEnumType = "Accepted"
const GenericDeviceModelStatusEnumTypeEmptyResultSet GenericDeviceModelStatusEnumType = "EmptyResultSet"
const GenericDeviceModelStatusEnumTypeNotSupported GenericDeviceModelStatusEnumType = "NotSupported"
const GenericDeviceModelStatusEnumTypeRejected GenericDeviceModelStatusEnumType = "Rejected"
func (*GenericDeviceModelStatusEnumType) UnmarshalJSON ¶
func (j *GenericDeviceModelStatusEnumType) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler.
type GenericDeviceModelStatusEnumType_1 ¶
type GenericDeviceModelStatusEnumType_1 string
const GenericDeviceModelStatusEnumType_1_Accepted GenericDeviceModelStatusEnumType_1 = "Accepted"
const GenericDeviceModelStatusEnumType_1_EmptyResultSet GenericDeviceModelStatusEnumType_1 = "EmptyResultSet"
const GenericDeviceModelStatusEnumType_1_NotSupported GenericDeviceModelStatusEnumType_1 = "NotSupported"
const GenericDeviceModelStatusEnumType_1_Rejected GenericDeviceModelStatusEnumType_1 = "Rejected"
func (*GenericDeviceModelStatusEnumType_1) UnmarshalJSON ¶
func (j *GenericDeviceModelStatusEnumType_1) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler.
type SetMonitoringBaseResponseJson ¶
type SetMonitoringBaseResponseJson struct { // CustomData corresponds to the JSON schema field "customData". CustomData *CustomDataType `json:"customData,omitempty" yaml:"customData,omitempty"` // Status corresponds to the JSON schema field "status". Status GenericDeviceModelStatusEnumType_1 `json:"status" yaml:"status"` // StatusInfo corresponds to the JSON schema field "statusInfo". StatusInfo *StatusInfoType `json:"statusInfo,omitempty" yaml:"statusInfo,omitempty"` }
func (*SetMonitoringBaseResponseJson) UnmarshalJSON ¶
func (j *SetMonitoringBaseResponseJson) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler.
type StatusInfoType ¶
type StatusInfoType struct { // Additional text to provide detailed information. // AdditionalInfo *string `json:"additionalInfo,omitempty" yaml:"additionalInfo,omitempty"` // CustomData corresponds to the JSON schema field "customData". CustomData *CustomDataType `json:"customData,omitempty" yaml:"customData,omitempty"` // A predefined code for the reason why the status is returned in this response. // The string is case-insensitive. // ReasonCode string `json:"reasonCode" yaml:"reasonCode"` }
Element providing more information about the status.
func (*StatusInfoType) UnmarshalJSON ¶
func (j *StatusInfoType) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler.
Click to show internal directories.
Click to hide internal directories.