// 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 GetLibraryItemsGlobals 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 GetLibraryItemsGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetLibraryItemsGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetLibraryItemsGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetLibraryItemsGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetLibraryItemsGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetLibraryItemsGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetLibraryItemsGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetLibraryItemsGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetLibraryItemsGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetLibraryItemsGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetLibraryItemsGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetLibraryItemsGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetLibraryItemsGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetLibraryItemsRequest 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"` // 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 GetLibraryItemsRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetLibraryItemsRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetLibraryItemsRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetLibraryItemsRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetLibraryItemsRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetLibraryItemsRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetLibraryItemsRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetLibraryItemsRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetLibraryItemsRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetLibraryItemsRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetLibraryItemsRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetLibraryItemsRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetLibraryItemsRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetLibraryItemsRequest) GetMediaQuery() *components.MediaQuery { if g == nil { return nil } return g.MediaQuery } type GetLibraryItemsResponse 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 *GetLibraryItemsResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetLibraryItemsResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetLibraryItemsResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetLibraryItemsResponse) GetMediaContainerWithMetadata() *components.MediaContainerWithMetadata { if g == nil { return nil } return g.MediaContainerWithMetadata } func (g *GetLibraryItemsResponse) GetHeaders() map[string][]string { if g == nil { return map[string][]string{} } return g.Headers }