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 47 48 49 50 51 52
|
// This file has been automatically generated. Don't edit it.
package transitions
import requests "github.com/andreykaipov/goobs/api/requests"
/*
GetTransitionListParams represents the params body for the "GetTransitionList" request.
List of all transitions available in the frontend's dropdown menu.
Since 4.1.0.
*/
type GetTransitionListParams struct {
requests.ParamsBasic
}
// GetSelfName just returns "GetTransitionList".
func (o *GetTransitionListParams) GetSelfName() string {
return "GetTransitionList"
}
/*
GetTransitionListResponse represents the response body for the "GetTransitionList" request.
List of all transitions available in the frontend's dropdown menu.
Since v4.1.0.
*/
type GetTransitionListResponse struct {
requests.ResponseBasic
// Name of the currently active transition.
CurrentTransition string `json:"current-transition,omitempty"`
Transitions []*Transition `json:"transitions,omitempty"`
}
type Transition struct {
// Name of the transition.
Name string `json:"name,omitempty"`
}
// GetTransitionList sends the corresponding request to the connected OBS WebSockets server. Note the variadic arguments
// as this request doesn't require any parameters.
func (c *Client) GetTransitionList(paramss ...*GetTransitionListParams) (*GetTransitionListResponse, error) {
if len(paramss) == 0 {
paramss = []*GetTransitionListParams{{}}
}
params := paramss[0]
data := &GetTransitionListResponse{}
if err := c.SendRequest(params, data); err != nil {
return nil, err
}
return data, nil
}
|