forked from use-go/onvif
-
Notifications
You must be signed in to change notification settings - Fork 2
/
function.go
45 lines (35 loc) · 1.12 KB
/
function.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// -*- Mode: Go; indent-tabs-mode: t -*-
//
// Copyright (C) 2022 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
// Code generated by gen_commands.py DO NOT EDIT.
package media2
type AddConfigurationFunction struct{}
func (_ *AddConfigurationFunction) Request() interface{} {
return &AddConfiguration{}
}
func (_ *AddConfigurationFunction) Response() interface{} {
return &AddConfigurationResponse{}
}
type GetAnalyticsConfigurationsFunction struct{}
func (_ *GetAnalyticsConfigurationsFunction) Request() interface{} {
return &GetAnalyticsConfigurations{}
}
func (_ *GetAnalyticsConfigurationsFunction) Response() interface{} {
return &GetAnalyticsConfigurationsResponse{}
}
type GetProfilesFunction struct{}
func (_ *GetProfilesFunction) Request() interface{} {
return &GetProfiles{}
}
func (_ *GetProfilesFunction) Response() interface{} {
return &GetProfilesResponse{}
}
type RemoveConfigurationFunction struct{}
func (_ *RemoveConfigurationFunction) Request() interface{} {
return &RemoveConfiguration{}
}
func (_ *RemoveConfigurationFunction) Response() interface{} {
return &RemoveConfigurationResponse{}
}