// 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 DetectCreditsGlobals 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 (d DetectCreditsGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(d, "", false) } func (d *DetectCreditsGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &d, "", false, nil); err != nil { return err } return nil } func (d *DetectCreditsGlobals) GetAccepts() *components.Accepts { if d == nil { return nil } return d.Accepts } func (d *DetectCreditsGlobals) GetClientIdentifier() *string { if d == nil { return nil } return d.ClientIdentifier } func (d *DetectCreditsGlobals) GetProduct() *string { if d == nil { return nil } return d.Product } func (d *DetectCreditsGlobals) GetVersion() *string { if d == nil { return nil } return d.Version } func (d *DetectCreditsGlobals) GetPlatform() *string { if d == nil { return nil } return d.Platform } func (d *DetectCreditsGlobals) GetPlatformVersion() *string { if d == nil { return nil } return d.PlatformVersion } func (d *DetectCreditsGlobals) GetDevice() *string { if d == nil { return nil } return d.Device } func (d *DetectCreditsGlobals) GetModel() *string { if d == nil { return nil } return d.Model } func (d *DetectCreditsGlobals) GetDeviceVendor() *string { if d == nil { return nil } return d.DeviceVendor } func (d *DetectCreditsGlobals) GetDeviceName() *string { if d == nil { return nil } return d.DeviceName } func (d *DetectCreditsGlobals) GetMarketplace() *string { if d == nil { return nil } return d.Marketplace } type DetectCreditsRequest 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"` Ids string `pathParam:"style=simple,explode=false,name=ids"` Force *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=force"` Manual *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=manual"` } func (d DetectCreditsRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(d, "", false) } func (d *DetectCreditsRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &d, "", false, []string{"ids"}); err != nil { return err } return nil } func (d *DetectCreditsRequest) GetAccepts() *components.Accepts { if d == nil { return nil } return d.Accepts } func (d *DetectCreditsRequest) GetClientIdentifier() *string { if d == nil { return nil } return d.ClientIdentifier } func (d *DetectCreditsRequest) GetProduct() *string { if d == nil { return nil } return d.Product } func (d *DetectCreditsRequest) GetVersion() *string { if d == nil { return nil } return d.Version } func (d *DetectCreditsRequest) GetPlatform() *string { if d == nil { return nil } return d.Platform } func (d *DetectCreditsRequest) GetPlatformVersion() *string { if d == nil { return nil } return d.PlatformVersion } func (d *DetectCreditsRequest) GetDevice() *string { if d == nil { return nil } return d.Device } func (d *DetectCreditsRequest) GetModel() *string { if d == nil { return nil } return d.Model } func (d *DetectCreditsRequest) GetDeviceVendor() *string { if d == nil { return nil } return d.DeviceVendor } func (d *DetectCreditsRequest) GetDeviceName() *string { if d == nil { return nil } return d.DeviceName } func (d *DetectCreditsRequest) GetMarketplace() *string { if d == nil { return nil } return d.Marketplace } func (d *DetectCreditsRequest) GetIds() string { if d == nil { return "" } return d.Ids } func (d *DetectCreditsRequest) GetForce() *components.BoolInt { if d == nil { return nil } return d.Force } func (d *DetectCreditsRequest) GetManual() *components.BoolInt { if d == nil { return nil } return d.Manual } type DetectCreditsResponse 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 (d *DetectCreditsResponse) GetContentType() string { if d == nil { return "" } return d.ContentType } func (d *DetectCreditsResponse) GetStatusCode() int { if d == nil { return 0 } return d.StatusCode } func (d *DetectCreditsResponse) GetRawResponse() *http.Response { if d == nil { return nil } return d.RawResponse }