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