// 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 CancelRefreshGlobals 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 (c CancelRefreshGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(c, "", false) } func (c *CancelRefreshGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &c, "", false, nil); err != nil { return err } return nil } func (c *CancelRefreshGlobals) GetAccepts() *components.Accepts { if c == nil { return nil } return c.Accepts } func (c *CancelRefreshGlobals) GetClientIdentifier() *string { if c == nil { return nil } return c.ClientIdentifier } func (c *CancelRefreshGlobals) GetProduct() *string { if c == nil { return nil } return c.Product } func (c *CancelRefreshGlobals) GetVersion() *string { if c == nil { return nil } return c.Version } func (c *CancelRefreshGlobals) GetPlatform() *string { if c == nil { return nil } return c.Platform } func (c *CancelRefreshGlobals) GetPlatformVersion() *string { if c == nil { return nil } return c.PlatformVersion } func (c *CancelRefreshGlobals) GetDevice() *string { if c == nil { return nil } return c.Device } func (c *CancelRefreshGlobals) GetModel() *string { if c == nil { return nil } return c.Model } func (c *CancelRefreshGlobals) GetDeviceVendor() *string { if c == nil { return nil } return c.DeviceVendor } func (c *CancelRefreshGlobals) GetDeviceName() *string { if c == nil { return nil } return c.DeviceName } func (c *CancelRefreshGlobals) GetMarketplace() *string { if c == nil { return nil } return c.Marketplace } type CancelRefreshRequest 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"` // Section identifier SectionID int64 `pathParam:"style=simple,explode=false,name=sectionId"` } func (c CancelRefreshRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(c, "", false) } func (c *CancelRefreshRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &c, "", false, []string{"sectionId"}); err != nil { return err } return nil } func (c *CancelRefreshRequest) GetAccepts() *components.Accepts { if c == nil { return nil } return c.Accepts } func (c *CancelRefreshRequest) GetClientIdentifier() *string { if c == nil { return nil } return c.ClientIdentifier } func (c *CancelRefreshRequest) GetProduct() *string { if c == nil { return nil } return c.Product } func (c *CancelRefreshRequest) GetVersion() *string { if c == nil { return nil } return c.Version } func (c *CancelRefreshRequest) GetPlatform() *string { if c == nil { return nil } return c.Platform } func (c *CancelRefreshRequest) GetPlatformVersion() *string { if c == nil { return nil } return c.PlatformVersion } func (c *CancelRefreshRequest) GetDevice() *string { if c == nil { return nil } return c.Device } func (c *CancelRefreshRequest) GetModel() *string { if c == nil { return nil } return c.Model } func (c *CancelRefreshRequest) GetDeviceVendor() *string { if c == nil { return nil } return c.DeviceVendor } func (c *CancelRefreshRequest) GetDeviceName() *string { if c == nil { return nil } return c.DeviceName } func (c *CancelRefreshRequest) GetMarketplace() *string { if c == nil { return nil } return c.Marketplace } func (c *CancelRefreshRequest) GetSectionID() int64 { if c == nil { return 0 } return c.SectionID } type CancelRefreshResponse 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 } func (c *CancelRefreshResponse) GetContentType() string { if c == nil { return "" } return c.ContentType } func (c *CancelRefreshResponse) GetStatusCode() int { if c == nil { return 0 } return c.StatusCode } func (c *CancelRefreshResponse) GetRawResponse() *http.Response { if c == nil { return nil } return c.RawResponse }