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 profiles
import requests "github.com/andreykaipov/goobs/api/requests"
/*
GetCurrentProfileParams represents the params body for the "GetCurrentProfile" request.
Get the name of the current profile.
Since 4.0.0.
*/
type GetCurrentProfileParams struct {
requests.ParamsBasic
}
// GetSelfName just returns "GetCurrentProfile".
func (o *GetCurrentProfileParams) GetSelfName() string {
return "GetCurrentProfile"
}
/*
GetCurrentProfileResponse represents the response body for the "GetCurrentProfile" request.
Get the name of the current profile.
Since v4.0.0.
*/
type GetCurrentProfileResponse struct {
requests.ResponseBasic
// Name of the currently active profile.
ProfileName string `json:"profile-name,omitempty"`
}
// GetCurrentProfile 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) GetCurrentProfile(paramss ...*GetCurrentProfileParams) (*GetCurrentProfileResponse, error) {
if len(paramss) == 0 {
paramss = []*GetCurrentProfileParams{{}}
}
params := paramss[0]
data := &GetCurrentProfileResponse{}
if err := c.SendRequest(params, data); err != nil {
return nil, err
}
return data, nil
}
|