// 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 ListSimilarGlobals 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 (l ListSimilarGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(l, "", false) } func (l *ListSimilarGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &l, "", false, nil); err != nil { return err } return nil } func (l *ListSimilarGlobals) GetAccepts() *components.Accepts { if l == nil { return nil } return l.Accepts } func (l *ListSimilarGlobals) GetClientIdentifier() *string { if l == nil { return nil } return l.ClientIdentifier } func (l *ListSimilarGlobals) GetProduct() *string { if l == nil { return nil } return l.Product } func (l *ListSimilarGlobals) GetVersion() *string { if l == nil { return nil } return l.Version } func (l *ListSimilarGlobals) GetPlatform() *string { if l == nil { return nil } return l.Platform } func (l *ListSimilarGlobals) GetPlatformVersion() *string { if l == nil { return nil } return l.PlatformVersion } func (l *ListSimilarGlobals) GetDevice() *string { if l == nil { return nil } return l.Device } func (l *ListSimilarGlobals) GetModel() *string { if l == nil { return nil } return l.Model } func (l *ListSimilarGlobals) GetDeviceVendor() *string { if l == nil { return nil } return l.DeviceVendor } func (l *ListSimilarGlobals) GetDeviceName() *string { if l == nil { return nil } return l.DeviceName } func (l *ListSimilarGlobals) GetMarketplace() *string { if l == nil { return nil } return l.Marketplace } type ListSimilarRequest 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"` // Limit results to count items Count *int64 `queryParam:"style=form,explode=true,name=count"` } func (l ListSimilarRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(l, "", false) } func (l *ListSimilarRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &l, "", false, []string{"ids"}); err != nil { return err } return nil } func (l *ListSimilarRequest) GetAccepts() *components.Accepts { if l == nil { return nil } return l.Accepts } func (l *ListSimilarRequest) GetClientIdentifier() *string { if l == nil { return nil } return l.ClientIdentifier } func (l *ListSimilarRequest) GetProduct() *string { if l == nil { return nil } return l.Product } func (l *ListSimilarRequest) GetVersion() *string { if l == nil { return nil } return l.Version } func (l *ListSimilarRequest) GetPlatform() *string { if l == nil { return nil } return l.Platform } func (l *ListSimilarRequest) GetPlatformVersion() *string { if l == nil { return nil } return l.PlatformVersion } func (l *ListSimilarRequest) GetDevice() *string { if l == nil { return nil } return l.Device } func (l *ListSimilarRequest) GetModel() *string { if l == nil { return nil } return l.Model } func (l *ListSimilarRequest) GetDeviceVendor() *string { if l == nil { return nil } return l.DeviceVendor } func (l *ListSimilarRequest) GetDeviceName() *string { if l == nil { return nil } return l.DeviceName } func (l *ListSimilarRequest) GetMarketplace() *string { if l == nil { return nil } return l.Marketplace } func (l *ListSimilarRequest) GetIds() string { if l == nil { return "" } return l.Ids } func (l *ListSimilarRequest) GetCount() *int64 { if l == nil { return nil } return l.Count } type ListSimilarResponse 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 MediaContainerWithMetadata *components.MediaContainerWithMetadata } func (l *ListSimilarResponse) GetContentType() string { if l == nil { return "" } return l.ContentType } func (l *ListSimilarResponse) GetStatusCode() int { if l == nil { return 0 } return l.StatusCode } func (l *ListSimilarResponse) GetRawResponse() *http.Response { if l == nil { return nil } return l.RawResponse } func (l *ListSimilarResponse) GetMediaContainerWithMetadata() *components.MediaContainerWithMetadata { if l == nil { return nil } return l.MediaContainerWithMetadata }