// 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 GetCommonGlobals 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 (g GetCommonGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetCommonGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetCommonGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetCommonGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetCommonGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetCommonGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetCommonGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetCommonGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetCommonGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetCommonGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetCommonGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetCommonGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetCommonGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetCommonRequest 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"` // Item type Type *int64 `queryParam:"style=form,explode=true,name=type"` // A querystring-based filtering language used to select subsets of media. Can be provided as an object with typed properties for type safety, or as a string for complex queries with operators and boolean logic. // // The query supports: // - Fields: integer, boolean, tag, string, date, language // - Operators: =, !=, ==, !==, <=, >=, >>=, <<= (varies by field type) // - Boolean operators: & (AND), , (OR), push/pop (parentheses), or=1 (explicit OR) // - Sorting: sort parameter with :desc, :nullsLast modifiers // - Grouping: group parameter // - Limits: limit parameter // // Examples: // - Object format: `{type: 4, sourceType: 2, title: "24"}` → `type=4&sourceType=2&title=24` // - String format: `type=4&sourceType=2&title==24` - type = 4 AND sourceType = 2 AND title = "24" // - Complex: `push=1&index=1&or=1&rating=2&pop=1&duration=10` - (index = 1 OR rating = 2) AND duration = 10 // // See [API Info section](#section/API-Info/Media-Queries) for detailed information on building media queries. // MediaQuery *components.MediaQuery `queryParam:"style=form,explode=true,name=mediaQuery"` } func (g GetCommonRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetCommonRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"sectionId"}); err != nil { return err } return nil } func (g *GetCommonRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetCommonRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetCommonRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetCommonRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetCommonRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetCommonRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetCommonRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetCommonRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetCommonRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetCommonRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetCommonRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetCommonRequest) GetSectionID() int64 { if g == nil { return 0 } return g.SectionID } func (g *GetCommonRequest) GetType() *int64 { if g == nil { return nil } return g.Type } func (g *GetCommonRequest) GetMediaQuery() *components.MediaQuery { if g == nil { return nil } return g.MediaQuery } type GetCommonResponse 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 Headers map[string][]string } func (g *GetCommonResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetCommonResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetCommonResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetCommonResponse) GetMediaContainerWithMetadata() *components.MediaContainerWithMetadata { if g == nil { return nil } return g.MediaContainerWithMetadata } func (g *GetCommonResponse) GetHeaders() map[string][]string { if g == nil { return map[string][]string{} } return g.Headers }