// 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 GetSessionSegmentGlobals 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 GetSessionSegmentGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetSessionSegmentGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetSessionSegmentGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetSessionSegmentGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetSessionSegmentGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetSessionSegmentGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetSessionSegmentGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetSessionSegmentGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetSessionSegmentGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetSessionSegmentGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetSessionSegmentGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetSessionSegmentGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetSessionSegmentGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetSessionSegmentRequest 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 session id SessionID string `pathParam:"style=simple,explode=false,name=sessionId"` // The consumer id ConsumerID string `pathParam:"style=simple,explode=false,name=consumerId"` // The segment id SegmentID string `pathParam:"style=simple,explode=false,name=segmentId"` } func (g GetSessionSegmentRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetSessionSegmentRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, []string{"sessionId", "consumerId", "segmentId"}); err != nil { return err } return nil } func (g *GetSessionSegmentRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetSessionSegmentRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetSessionSegmentRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetSessionSegmentRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetSessionSegmentRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetSessionSegmentRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetSessionSegmentRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetSessionSegmentRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetSessionSegmentRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetSessionSegmentRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetSessionSegmentRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } func (g *GetSessionSegmentRequest) GetSessionID() string { if g == nil { return "" } return g.SessionID } func (g *GetSessionSegmentRequest) GetConsumerID() string { if g == nil { return "" } return g.ConsumerID } func (g *GetSessionSegmentRequest) GetSegmentID() string { if g == nil { return "" } return g.SegmentID } type GetSessionSegmentResponse 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 } func (g *GetSessionSegmentResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetSessionSegmentResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetSessionSegmentResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse }