forked from use-go/onvif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GetVideoSourceConfigurationOptions_auto.go
30 lines (27 loc) · 1.14 KB
/
GetVideoSourceConfigurationOptions_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_GetVideoSourceConfigurationOptions forwards the call to dev.CallMethod() then parses the payload of the reply as a GetVideoSourceConfigurationOptionsResponse.
func Call_GetVideoSourceConfigurationOptions(ctx context.Context, dev *onvif.Device, request media.GetVideoSourceConfigurationOptions) (media.GetVideoSourceConfigurationOptionsResponse, error) {
type Envelope struct {
Header struct{}
Body struct {
GetVideoSourceConfigurationOptionsResponse media.GetVideoSourceConfigurationOptionsResponse
}
}
var reply Envelope
if httpReply, err := dev.CallMethod(request); err != nil {
return reply.Body.GetVideoSourceConfigurationOptionsResponse, errors.Annotate(err, "call")
} else {
err = sdk.ReadAndParse(ctx, httpReply, &reply, "GetVideoSourceConfigurationOptions")
return reply.Body.GetVideoSourceConfigurationOptionsResponse, errors.Annotate(err, "reply")
}
}