mirror of
https://github.com/kerberos-io/onvif.git
synced 2026-08-23 15:08:33 +00:00
inputs method added
This commit is contained in:
@@ -341,6 +341,15 @@ func (_ *GetRelayOutputsFunction) Response() interface{} {
|
||||
return &GetRelayOutputsResponse{}
|
||||
}
|
||||
|
||||
type GetDigitalInputsFunction struct{}
|
||||
|
||||
func (_ *GetDigitalInputsFunction) Request() interface{} {
|
||||
return &GetDigitalInputs{}
|
||||
}
|
||||
func (_ *GetDigitalInputsFunction) Response() interface{} {
|
||||
return &GetDigitalInputsResponse{}
|
||||
}
|
||||
|
||||
type GetRemoteDiscoveryModeFunction struct{}
|
||||
|
||||
func (_ *GetRemoteDiscoveryModeFunction) Request() interface{} {
|
||||
|
||||
@@ -683,6 +683,14 @@ type GetRelayOutputsResponse struct {
|
||||
RelayOutputs onvif.RelayOutput
|
||||
}
|
||||
|
||||
type GetDigitalInputs struct {
|
||||
XMLName string `xml:"tmd:GetDigitalInputs"`
|
||||
}
|
||||
|
||||
type GetDigitalInputsResponse struct {
|
||||
DigitalInputs onvif.DigitalInput
|
||||
}
|
||||
|
||||
type SetRelayOutputSettings struct {
|
||||
XMLName string `xml:"tds:SetRelayOutputSettings"`
|
||||
RelayOutputToken onvif.ReferenceToken `xml:"tds:RelayOutputToken"`
|
||||
|
||||
Reference in New Issue
Block a user