// 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 GetCollectionItemsGlobals 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 GetCollectionItemsGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetCollectionItemsGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetCollectionItemsGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetCollectionItemsGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetCollectionItemsGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetCollectionItemsGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetCollectionItemsGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetCollectionItemsGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetCollectionItemsGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetCollectionItemsGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetCollectionItemsGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetCollectionItemsGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetCollectionItemsGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetCollectionItemsRequest 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 collection id CollectionID int64 `pathParam:"style=simple,explode=false,name=collectionId"` } func (g GetCollectionItemsRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetCollectionItemsRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"collectionId"}); err != nil { return err } return nil } func (g *GetCollectionItemsRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetCollectionItemsRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetCollectionItemsRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetCollectionItemsRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetCollectionItemsRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetCollectionItemsRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetCollectionItemsRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetCollectionItemsRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetCollectionItemsRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetCollectionItemsRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetCollectionItemsRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetCollectionItemsRequest) GetCollectionID() int64 { if g == nil { return 0 } return g.CollectionID } type GetCollectionItemsResponse 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 (g *GetCollectionItemsResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetCollectionItemsResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetCollectionItemsResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetCollectionItemsResponse) GetMediaContainerWithMetadata() *components.MediaContainerWithMetadata { if g == nil { return nil } return g.MediaContainerWithMetadata }