1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
package testfixtures
type GetSourcesTypesListResponse struct {
Ids []*Id `json:"Ids,omitempty"`
}
type Extra struct {
Poopy bool `json:"Poopy"`
Wow bool `json:"Wow"`
}
type Caps struct {
CanInteract bool `json:"CanInteract"`
DoNotDuplicate bool `json:"DoNotDuplicate"`
DoNotSelfMonitor bool `json:"DoNotSelfMonitor"`
Extra []*Extra `json:"Extra,omitempty"`
HasAudio bool `json:"HasAudio"`
HasVideo bool `json:"HasVideo"`
IsAsync bool `json:"IsAsync"`
IsComposite bool `json:"IsComposite"`
}
type Id struct {
Caps *Caps `json:"Caps,omitempty"`
DefaultSettings map[string]interface{} `json:"DefaultSettings"`
DisplayName string `json:"DisplayName"`
Type string `json:"Type"`
TypeId string `json:"TypeId"`
}
|