// 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 GetSectionHubsGlobals 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 GetSectionHubsGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetSectionHubsGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetSectionHubsGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetSectionHubsGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetSectionHubsGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetSectionHubsGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetSectionHubsGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetSectionHubsGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetSectionHubsGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetSectionHubsGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetSectionHubsGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetSectionHubsGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetSectionHubsGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetSectionHubsRequest 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 section ID for the hubs to fetch SectionID int64 `pathParam:"style=simple,explode=false,name=sectionId"` // Limit results to count items Count *int64 `queryParam:"style=form,explode=true,name=count"` // Only return hubs which are "transient", meaning those which are prone to changing after media playback or addition (e.g. On Deck, or Recently Added) OnlyTransient *components.BoolInt `default:"0" queryParam:"style=form,explode=true,name=onlyTransient"` } func (g GetSectionHubsRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetSectionHubsRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"sectionId"}); err != nil { return err } return nil } func (g *GetSectionHubsRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetSectionHubsRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetSectionHubsRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetSectionHubsRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetSectionHubsRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetSectionHubsRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetSectionHubsRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetSectionHubsRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetSectionHubsRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetSectionHubsRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetSectionHubsRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetSectionHubsRequest) GetSectionID() int64 { if g == nil { return 0 } return g.SectionID } func (g *GetSectionHubsRequest) GetCount() *int64 { if g == nil { return nil } return g.Count } func (g *GetSectionHubsRequest) GetOnlyTransient() *components.BoolInt { if g == nil { return nil } return g.OnlyTransient } // GetSectionHubsMediaContainer - `MediaContainer` is the root element of most Plex API responses. It serves as a generic container for various types of content (Metadata, Hubs, Directories, etc.) and includes pagination information (offset, size, totalSize) when applicable. // Common attributes: - identifier: Unique identifier for this container - size: Number of items in this response page - totalSize: Total number of items available (for pagination) - offset: Starting index of this page (for pagination) // The container often "hoists" common attributes from its children. For example, if all tracks in a container share the same album title, the `parentTitle` attribute may appear on the MediaContainer rather than being repeated on each track. type GetSectionHubsMediaContainer struct { Identifier *string `json:"identifier,omitempty"` // The offset of where this container page starts among the total objects available. Also provided in the `X-Plex-Container-Start` header. // Offset *int64 `json:"offset,omitempty"` Size *int64 `json:"size,omitempty"` // The total size of objects available. Also provided in the `X-Plex-Container-Total-Size` header. // TotalSize *int64 `json:"totalSize,omitempty"` Hub []components.Hub `json:"Hub,omitempty"` } func (g *GetSectionHubsMediaContainer) GetIdentifier() *string { if g == nil { return nil } return g.Identifier } func (g *GetSectionHubsMediaContainer) GetOffset() *int64 { if g == nil { return nil } return g.Offset } func (g *GetSectionHubsMediaContainer) GetSize() *int64 { if g == nil { return nil } return g.Size } func (g *GetSectionHubsMediaContainer) GetTotalSize() *int64 { if g == nil { return nil } return g.TotalSize } func (g *GetSectionHubsMediaContainer) GetHub() []components.Hub { if g == nil { return nil } return g.Hub } // GetSectionHubsResponseBody - OK type GetSectionHubsResponseBody struct { MediaContainer *GetSectionHubsMediaContainer `json:"MediaContainer,omitempty"` } func (g *GetSectionHubsResponseBody) GetMediaContainer() *GetSectionHubsMediaContainer { if g == nil { return nil } return g.MediaContainer } type GetSectionHubsResponse 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 Object *GetSectionHubsResponseBody Headers map[string][]string } func (g *GetSectionHubsResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetSectionHubsResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetSectionHubsResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetSectionHubsResponse) GetObject() *GetSectionHubsResponseBody { if g == nil { return nil } return g.Object } func (g *GetSectionHubsResponse) GetHeaders() map[string][]string { if g == nil { return map[string][]string{} } return g.Headers }