goonvif/onvif/sdk/ptz/GotoHomePosition_auto.go

31 lines
1012 B
Go

// Code generated : DO NOT EDIT.
// Copyright (c) 2022 Jean-Francois SMIGIELSKI
// Distributed under the MIT License
package ptz
import (
"context"
"github.com/juju/errors"
"git.pyer.club/kingecg/goonvif/onvif"
"git.pyer.club/kingecg/goonvif/onvif/sdk"
"git.pyer.club/kingecg/goonvif/onvif/ptz"
)
// Call_GotoHomePosition forwards the call to dev.CallMethod() then parses the payload of the reply as a GotoHomePositionResponse.
func Call_GotoHomePosition(ctx context.Context, dev *onvif.Device, request ptz.GotoHomePosition) (ptz.GotoHomePositionResponse, error) {
type Envelope struct {
Header struct{}
Body struct {
GotoHomePositionResponse ptz.GotoHomePositionResponse
}
}
var reply Envelope
if httpReply, err := dev.CallMethod(request); err != nil {
return reply.Body.GotoHomePositionResponse, errors.Annotate(err, "call")
} else {
err = sdk.ReadAndParse(ctx, httpReply, &reply, "GotoHomePosition")
return reply.Body.GotoHomePositionResponse, errors.Annotate(err, "reply")
}
}