forked from use-go/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetAudioOutputs_auto.go
30 lines (27 loc) · 982 Bytes
/
GetAudioOutputs_auto.go
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
// Code generated : DO NOT EDIT.
// Copyright (c) 2022 Jean-Francois SMIGIELSKI
// Distributed under the MIT License
package media
import (
"context"
"github.com/juju/errors"
"github.com/WalleCYR/onvif"
"github.com/WalleCYR/onvif/sdk"
"github.com/WalleCYR/onvif/media"
)
// Call_GetAudioOutputs forwards the call to dev.CallMethod() then parses the payload of the reply as a GetAudioOutputsResponse.
func Call_GetAudioOutputs(ctx context.Context, dev *onvif.Device, request media.GetAudioOutputs) (media.GetAudioOutputsResponse, error) {
type Envelope struct {
Header struct{}
Body struct {
GetAudioOutputsResponse media.GetAudioOutputsResponse
}
}
var reply Envelope
if httpReply, err := dev.CallMethod(request); err != nil {
return reply.Body.GetAudioOutputsResponse, errors.Annotate(err, "call")
} else {
err = sdk.ReadAndParse(ctx, httpReply, &reply, "GetAudioOutputs")
return reply.Body.GetAudioOutputsResponse, errors.Annotate(err, "reply")
}
}