File: xx_generated.settransitionsettings.go

package info (click to toggle)
golang-github-andreykaipov-goobs 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,228 kB
  • sloc: makefile: 32
file content (46 lines) | stat: -rw-r--r-- 1,427 bytes parent folder | download
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
46
// This file has been automatically generated. Don't edit it.

package transitions

import requests "github.com/andreykaipov/goobs/api/requests"

/*
SetTransitionSettingsParams represents the params body for the "SetTransitionSettings" request.
Change the current settings of a transition
Since 4.9.0.
*/
type SetTransitionSettingsParams struct {
	requests.ParamsBasic

	// Transition name
	TransitionName string `json:"transitionName,omitempty"`

	// Transition settings (they can be partial)
	TransitionSettings map[string]interface{} `json:"transitionSettings,omitempty"`
}

// GetSelfName just returns "SetTransitionSettings".
func (o *SetTransitionSettingsParams) GetSelfName() string {
	return "SetTransitionSettings"
}

/*
SetTransitionSettingsResponse represents the response body for the "SetTransitionSettings" request.
Change the current settings of a transition
Since v4.9.0.
*/
type SetTransitionSettingsResponse struct {
	requests.ResponseBasic

	// Updated transition settings
	TransitionSettings map[string]interface{} `json:"transitionSettings,omitempty"`
}

// SetTransitionSettings sends the corresponding request to the connected OBS WebSockets server.
func (c *Client) SetTransitionSettings(params *SetTransitionSettingsParams) (*SetTransitionSettingsResponse, error) {
	data := &SetTransitionSettingsResponse{}
	if err := c.SendRequest(params, data); err != nil {
		return nil, err
	}
	return data, nil
}