// 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 SetPreferencesGlobals 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 SetPreferencesGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(s, "", false) } func (s *SetPreferencesGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &s, "", false, nil); err != nil { return err } return nil } func (s *SetPreferencesGlobals) GetAccepts() *components.Accepts { if s == nil { return nil } return s.Accepts } func (s *SetPreferencesGlobals) GetClientIdentifier() *string { if s == nil { return nil } return s.ClientIdentifier } func (s *SetPreferencesGlobals) GetProduct() *string { if s == nil { return nil } return s.Product } func (s *SetPreferencesGlobals) GetVersion() *string { if s == nil { return nil } return s.Version } func (s *SetPreferencesGlobals) GetPlatform() *string { if s == nil { return nil } return s.Platform } func (s *SetPreferencesGlobals) GetPlatformVersion() *string { if s == nil { return nil } return s.PlatformVersion } func (s *SetPreferencesGlobals) GetDevice() *string { if s == nil { return nil } return s.Device } func (s *SetPreferencesGlobals) GetModel() *string { if s == nil { return nil } return s.Model } func (s *SetPreferencesGlobals) GetDeviceVendor() *string { if s == nil { return nil } return s.DeviceVendor } func (s *SetPreferencesGlobals) GetDeviceName() *string { if s == nil { return nil } return s.DeviceName } func (s *SetPreferencesGlobals) GetMarketplace() *string { if s == nil { return nil } return s.Marketplace } type Prefs struct { } type SetPreferencesRequest 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"` Prefs Prefs `queryParam:"style=form,explode=true,name=prefs"` } func (s SetPreferencesRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(s, "", false) } func (s *SetPreferencesRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &s, "", false, []string{"prefs"}); err != nil { return err } return nil } func (s *SetPreferencesRequest) GetAccepts() *components.Accepts { if s == nil { return nil } return s.Accepts } func (s *SetPreferencesRequest) GetClientIdentifier() *string { if s == nil { return nil } return s.ClientIdentifier } func (s *SetPreferencesRequest) GetProduct() *string { if s == nil { return nil } return s.Product } func (s *SetPreferencesRequest) GetVersion() *string { if s == nil { return nil } return s.Version } func (s *SetPreferencesRequest) GetPlatform() *string { if s == nil { return nil } return s.Platform } func (s *SetPreferencesRequest) GetPlatformVersion() *string { if s == nil { return nil } return s.PlatformVersion } func (s *SetPreferencesRequest) GetDevice() *string { if s == nil { return nil } return s.Device } func (s *SetPreferencesRequest) GetModel() *string { if s == nil { return nil } return s.Model } func (s *SetPreferencesRequest) GetDeviceVendor() *string { if s == nil { return nil } return s.DeviceVendor } func (s *SetPreferencesRequest) GetDeviceName() *string { if s == nil { return nil } return s.DeviceName } func (s *SetPreferencesRequest) GetMarketplace() *string { if s == nil { return nil } return s.Marketplace } func (s *SetPreferencesRequest) GetPrefs() Prefs { if s == nil { return Prefs{} } return s.Prefs } type SetPreferencesResponse 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 *SetPreferencesResponse) GetContentType() string { if s == nil { return "" } return s.ContentType } func (s *SetPreferencesResponse) GetStatusCode() int { if s == nil { return 0 } return s.StatusCode } func (s *SetPreferencesResponse) GetRawResponse() *http.Response { if s == nil { return nil } return s.RawResponse }