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