// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package operations import ( "github.com/LukeHagar/plexgo/internal/utils" "github.com/LukeHagar/plexgo/models/components" "net/http" ) type GetStreamLoudnessGlobals struct { // Indicates the client accepts the indicated media types Accepts *components.Accepts `default:"application/xml" header:"style=simple,explode=false,name=accepts"` // An opaque identifier unique to the client ClientIdentifier *string `header:"style=simple,explode=false,name=X-Plex-Client-Identifier"` // The name of the client product Product *string `header:"style=simple,explode=false,name=X-Plex-Product"` // The version of the client application Version *string `header:"style=simple,explode=false,name=X-Plex-Version"` // The platform of the client Platform *string `header:"style=simple,explode=false,name=X-Plex-Platform"` // The version of the platform PlatformVersion *string `header:"style=simple,explode=false,name=X-Plex-Platform-Version"` // A relatively friendly name for the client device Device *string `header:"style=simple,explode=false,name=X-Plex-Device"` // A potentially less friendly identifier for the device model Model *string `header:"style=simple,explode=false,name=X-Plex-Model"` // The device vendor DeviceVendor *string `header:"style=simple,explode=false,name=X-Plex-Device-Vendor"` // A friendly name for the client DeviceName *string `header:"style=simple,explode=false,name=X-Plex-Device-Name"` // The marketplace on which the client application is distributed Marketplace *string `header:"style=simple,explode=false,name=X-Plex-Marketplace"` } func (g GetStreamLoudnessGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetStreamLoudnessGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetStreamLoudnessGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetStreamLoudnessGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetStreamLoudnessGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetStreamLoudnessGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetStreamLoudnessGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetStreamLoudnessGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetStreamLoudnessGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetStreamLoudnessGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetStreamLoudnessGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetStreamLoudnessGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetStreamLoudnessGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetStreamLoudnessRequest struct { // Indicates the client accepts the indicated media types Accepts *components.Accepts `default:"application/xml" header:"style=simple,explode=false,name=accepts"` // An opaque identifier unique to the client ClientIdentifier *string `header:"style=simple,explode=false,name=X-Plex-Client-Identifier"` // The name of the client product Product *string `header:"style=simple,explode=false,name=X-Plex-Product"` // The version of the client application Version *string `header:"style=simple,explode=false,name=X-Plex-Version"` // The platform of the client Platform *string `header:"style=simple,explode=false,name=X-Plex-Platform"` // The version of the platform PlatformVersion *string `header:"style=simple,explode=false,name=X-Plex-Platform-Version"` // A relatively friendly name for the client device Device *string `header:"style=simple,explode=false,name=X-Plex-Device"` // A potentially less friendly identifier for the device model Model *string `header:"style=simple,explode=false,name=X-Plex-Model"` // The device vendor DeviceVendor *string `header:"style=simple,explode=false,name=X-Plex-Device-Vendor"` // A friendly name for the client DeviceName *string `header:"style=simple,explode=false,name=X-Plex-Device-Name"` // The marketplace on which the client application is distributed Marketplace *string `header:"style=simple,explode=false,name=X-Plex-Marketplace"` // The id of the stream StreamID int64 `pathParam:"style=simple,explode=false,name=streamId"` // Subsample result down to return only the provided number of samples Subsample *int64 `queryParam:"style=form,explode=true,name=subsample"` } func (g GetStreamLoudnessRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetStreamLoudnessRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"streamId"}); err != nil { return err } return nil } func (g *GetStreamLoudnessRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetStreamLoudnessRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetStreamLoudnessRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetStreamLoudnessRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetStreamLoudnessRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetStreamLoudnessRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetStreamLoudnessRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetStreamLoudnessRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetStreamLoudnessRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetStreamLoudnessRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetStreamLoudnessRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetStreamLoudnessRequest) GetStreamID() int64 { if g == nil { return 0 } return g.StreamID } func (g *GetStreamLoudnessRequest) GetSubsample() *int64 { if g == nil { return nil } return g.Subsample } type GetStreamLoudnessResponse struct { // HTTP response content type for this operation ContentType string // HTTP response status code for this operation StatusCode int // Raw HTTP response; suitable for custom response parsing RawResponse *http.Response // OK Res *string } func (g *GetStreamLoudnessResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetStreamLoudnessResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetStreamLoudnessResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetStreamLoudnessResponse) GetRes() *string { if g == nil { return nil } return g.Res }