// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. package globals import ( "github.com/LukeHagar/plexgo/internal/utils" "github.com/LukeHagar/plexgo/models/components" ) type Globals 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 Globals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *Globals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *Globals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *Globals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *Globals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *Globals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *Globals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *Globals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *Globals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *Globals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *Globals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *Globals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *Globals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace }