// 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 ResetPlayQueueGlobals 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 (r ResetPlayQueueGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } func (r *ResetPlayQueueGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, nil); err != nil { return err } return nil } func (r *ResetPlayQueueGlobals) GetAccepts() *components.Accepts { if r == nil { return nil } return r.Accepts } func (r *ResetPlayQueueGlobals) GetClientIdentifier() *string { if r == nil { return nil } return r.ClientIdentifier } func (r *ResetPlayQueueGlobals) GetProduct() *string { if r == nil { return nil } return r.Product } func (r *ResetPlayQueueGlobals) GetVersion() *string { if r == nil { return nil } return r.Version } func (r *ResetPlayQueueGlobals) GetPlatform() *string { if r == nil { return nil } return r.Platform } func (r *ResetPlayQueueGlobals) GetPlatformVersion() *string { if r == nil { return nil } return r.PlatformVersion } func (r *ResetPlayQueueGlobals) GetDevice() *string { if r == nil { return nil } return r.Device } func (r *ResetPlayQueueGlobals) GetModel() *string { if r == nil { return nil } return r.Model } func (r *ResetPlayQueueGlobals) GetDeviceVendor() *string { if r == nil { return nil } return r.DeviceVendor } func (r *ResetPlayQueueGlobals) GetDeviceName() *string { if r == nil { return nil } return r.DeviceName } func (r *ResetPlayQueueGlobals) GetMarketplace() *string { if r == nil { return nil } return r.Marketplace } type ResetPlayQueueRequest 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 play queue. PlayQueueID int64 `pathParam:"style=simple,explode=false,name=playQueueId"` } func (r ResetPlayQueueRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(r, "", false) } func (r *ResetPlayQueueRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &r, "", false, []string{"playQueueId"}); err != nil { return err } return nil } func (r *ResetPlayQueueRequest) GetAccepts() *components.Accepts { if r == nil { return nil } return r.Accepts } func (r *ResetPlayQueueRequest) GetClientIdentifier() *string { if r == nil { return nil } return r.ClientIdentifier } func (r *ResetPlayQueueRequest) GetProduct() *string { if r == nil { return nil } return r.Product } func (r *ResetPlayQueueRequest) GetVersion() *string { if r == nil { return nil } return r.Version } func (r *ResetPlayQueueRequest) GetPlatform() *string { if r == nil { return nil } return r.Platform } func (r *ResetPlayQueueRequest) GetPlatformVersion() *string { if r == nil { return nil } return r.PlatformVersion } func (r *ResetPlayQueueRequest) GetDevice() *string { if r == nil { return nil } return r.Device } func (r *ResetPlayQueueRequest) GetModel() *string { if r == nil { return nil } return r.Model } func (r *ResetPlayQueueRequest) GetDeviceVendor() *string { if r == nil { return nil } return r.DeviceVendor } func (r *ResetPlayQueueRequest) GetDeviceName() *string { if r == nil { return nil } return r.DeviceName } func (r *ResetPlayQueueRequest) GetMarketplace() *string { if r == nil { return nil } return r.Marketplace } func (r *ResetPlayQueueRequest) GetPlayQueueID() int64 { if r == nil { return 0 } return r.PlayQueueID } type ResetPlayQueueResponse 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 MediaContainerWithPlaylistMetadata *components.MediaContainerWithPlaylistMetadata } func (r *ResetPlayQueueResponse) GetContentType() string { if r == nil { return "" } return r.ContentType } func (r *ResetPlayQueueResponse) GetStatusCode() int { if r == nil { return 0 } return r.StatusCode } func (r *ResetPlayQueueResponse) GetRawResponse() *http.Response { if r == nil { return nil } return r.RawResponse } func (r *ResetPlayQueueResponse) GetMediaContainerWithPlaylistMetadata() *components.MediaContainerWithPlaylistMetadata { if r == nil { return nil } return r.MediaContainerWithPlaylistMetadata }