type Sink struct {
NodeType string `json:"node_type"`
Name string `json:"name"`
State string `json:"state"`
Status data.Map `json:"status,omitempty"`
Meta interface{} `json:"meta,omitempty"`
}
Sink is a part of the response which is returned by sinks' action.
type Source struct {
NodeType string `json:"node_type"`
Name string `json:"name"`
State string `json:"state"`
Status data.Map `json:"status,omitempty"`
Meta interface{} `json:"meta,omitempty"`
}
Source is a part of the response which is returned by sources' action.
type Stream struct {
NodeType string `json:"node_type"`
Name string `json:"name"`
State string `json:"state"`
Status data.Map `json:"status,omitempty"`
Meta interface{} `json:"meta,omitempty"`
}
Stream is a part of the response which is returned by streams' action.