// 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" "io" "net/http" ) type GetChapterImageGlobals 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 GetChapterImageGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetChapterImageGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetChapterImageGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetChapterImageGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetChapterImageGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetChapterImageGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetChapterImageGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetChapterImageGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetChapterImageGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetChapterImageGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetChapterImageGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetChapterImageGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetChapterImageGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetChapterImageRequest 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 id of the media item MediaID int64 `pathParam:"style=simple,explode=false,name=mediaId"` // The index of the chapter Chapter int64 `pathParam:"style=simple,explode=false,name=chapter"` } func (g GetChapterImageRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetChapterImageRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"mediaId", "chapter"}); err != nil { return err } return nil } func (g *GetChapterImageRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetChapterImageRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetChapterImageRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetChapterImageRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetChapterImageRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetChapterImageRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetChapterImageRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetChapterImageRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetChapterImageRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetChapterImageRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetChapterImageRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetChapterImageRequest) GetMediaID() int64 { if g == nil { return 0 } return g.MediaID } func (g *GetChapterImageRequest) GetChapter() int64 { if g == nil { return 0 } return g.Chapter } type GetChapterImageResponse 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 // The Close method must be called on this field, even if it is not used, to prevent resource leaks. ResponseStream io.ReadCloser } func (g *GetChapterImageResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetChapterImageResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetChapterImageResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetChapterImageResponse) GetResponseStream() io.ReadCloser { if g == nil { return nil } return g.ResponseStream }