// 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" ) var GetTokenDetailsServerList = []string{ "https://plex.tv/api/v2", } type GetTokenDetailsGlobals 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 GetTokenDetailsGlobals) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetTokenDetailsGlobals) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetTokenDetailsGlobals) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetTokenDetailsGlobals) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetTokenDetailsGlobals) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetTokenDetailsGlobals) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetTokenDetailsGlobals) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetTokenDetailsGlobals) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetTokenDetailsGlobals) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetTokenDetailsGlobals) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetTokenDetailsGlobals) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetTokenDetailsGlobals) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetTokenDetailsGlobals) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetTokenDetailsRequest 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 GetTokenDetailsRequest) MarshalJSON() ([]byte, error) { return utils.MarshalJSON(g, "", false) } func (g *GetTokenDetailsRequest) UnmarshalJSON(data []byte) error { if err := utils.UnmarshalJSON(data, &g, "", false, nil); err != nil { return err } return nil } func (g *GetTokenDetailsRequest) GetAccepts() *components.Accepts { if g == nil { return nil } return g.Accepts } func (g *GetTokenDetailsRequest) GetClientIdentifier() *string { if g == nil { return nil } return g.ClientIdentifier } func (g *GetTokenDetailsRequest) GetProduct() *string { if g == nil { return nil } return g.Product } func (g *GetTokenDetailsRequest) GetVersion() *string { if g == nil { return nil } return g.Version } func (g *GetTokenDetailsRequest) GetPlatform() *string { if g == nil { return nil } return g.Platform } func (g *GetTokenDetailsRequest) GetPlatformVersion() *string { if g == nil { return nil } return g.PlatformVersion } func (g *GetTokenDetailsRequest) GetDevice() *string { if g == nil { return nil } return g.Device } func (g *GetTokenDetailsRequest) GetModel() *string { if g == nil { return nil } return g.Model } func (g *GetTokenDetailsRequest) GetDeviceVendor() *string { if g == nil { return nil } return g.DeviceVendor } func (g *GetTokenDetailsRequest) GetDeviceName() *string { if g == nil { return nil } return g.DeviceName } func (g *GetTokenDetailsRequest) GetMarketplace() *string { if g == nil { return nil } return g.Marketplace } type GetTokenDetailsResponse 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 // Logged in user details UserPlexAccount *components.UserPlexAccount } func (g *GetTokenDetailsResponse) GetContentType() string { if g == nil { return "" } return g.ContentType } func (g *GetTokenDetailsResponse) GetStatusCode() int { if g == nil { return 0 } return g.StatusCode } func (g *GetTokenDetailsResponse) GetRawResponse() *http.Response { if g == nil { return nil } return g.RawResponse } func (g *GetTokenDetailsResponse) GetUserPlexAccount() *components.UserPlexAccount { if g == nil { return nil } return g.UserPlexAccount }