mirror of
https://github.com/kerberos-io/onvif.git
synced 2026-08-23 15:08:33 +00:00
23 lines
588 B
Go
23 lines
588 B
Go
package topic
|
|
|
|
import "github.com/kerberos-io/onvif/xsd"
|
|
|
|
type MessageDescription struct {
|
|
IsProperty xsd.Boolean `xml:"IsProperty,attr"`
|
|
Source Source `json:",omitempty" xml:",omitempty"`
|
|
Data Data `json:",omitempty" xml:",omitempty"`
|
|
}
|
|
|
|
type Source struct {
|
|
SimpleItemDescription []SimpleItemDescription `json:",omitempty" xml:",omitempty"`
|
|
}
|
|
|
|
type Data struct {
|
|
SimpleItemDescription []SimpleItemDescription `json:",omitempty" xml:",omitempty"`
|
|
}
|
|
|
|
type SimpleItemDescription struct {
|
|
Name xsd.AnyType `xml:"Name,attr"`
|
|
Type xsd.AnyType `xml:"Type,attr"`
|
|
}
|