File: xx_generated.getstudiomodestatus.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 (45 lines) | stat: -rw-r--r-- 1,351 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
// This file has been automatically generated. Don't edit it.

package studiomode

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

/*
GetStudioModeStatusParams represents the params body for the "GetStudioModeStatus" request.
Indicates if Studio Mode is currently enabled.
Since 4.1.0.
*/
type GetStudioModeStatusParams struct {
	requests.ParamsBasic
}

// GetSelfName just returns "GetStudioModeStatus".
func (o *GetStudioModeStatusParams) GetSelfName() string {
	return "GetStudioModeStatus"
}

/*
GetStudioModeStatusResponse represents the response body for the "GetStudioModeStatus" request.
Indicates if Studio Mode is currently enabled.
Since v4.1.0.
*/
type GetStudioModeStatusResponse struct {
	requests.ResponseBasic

	// Indicates if Studio Mode is enabled.
	StudioMode bool `json:"studio-mode,omitempty"`
}

// GetStudioModeStatus 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) GetStudioModeStatus(paramss ...*GetStudioModeStatusParams) (*GetStudioModeStatusResponse, error) {
	if len(paramss) == 0 {
		paramss = []*GetStudioModeStatusParams{{}}
	}
	params := paramss[0]
	data := &GetStudioModeStatusResponse{}
	if err := c.SendRequest(params, data); err != nil {
		return nil, err
	}
	return data, nil
}