Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddressConfig ¶
type AddressConfig struct {
// flavor
Flavor string `json:"flavor,omitempty"`
// multicast
// Required: true
Multicast *bool `json:"multicast"`
// store and forward
// Required: true
StoreAndForward *bool `json:"store_and_forward"`
}
AddressConfig address config swagger:model AddressConfig
type AddressConfigMap ¶
type AddressConfigMap map[string]AddressConfig
AddressConfigMap address config map swagger:model AddressConfigMap
type ErrorModel ¶
type ErrorModel struct {
// An explanation of the specific error that has occurred
// Required: true
Details *string `json:"details"`
// HTTP status code
// Required: true
Status *int32 `json:"status"`
// A brief summary of the error, this should remain consistent
// between errors of the same class
// Required: true
Title *string `json:"title"`
}
ErrorModel error model swagger:model ErrorModel
type ErrorResponse ¶
type ErrorResponse struct {
// List of errors returned
// Required: true
// Min Items: 1
Errors []*ErrorModel `json:"errors"`
}
ErrorResponse error response swagger:model ErrorResponse
Click to show internal directories.
Click to hide internal directories.