mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 04:20:46 +00:00
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
package globals
|
|
|
|
type Globals struct {
|
|
// The unique identifier for the client application
|
|
// This is used to track the client application and its usage
|
|
// (UUID, serial number, or other number unique per device)
|
|
//
|
|
ClientID *string `queryParam:"style=form,explode=true,name=X-Plex-Client-Identifier"`
|
|
ClientName *string `queryParam:"style=form,explode=true,name=X-Plex-Product"`
|
|
ClientVersion *string `queryParam:"style=form,explode=true,name=X-Plex-Version"`
|
|
ClientPlatform *string `queryParam:"style=form,explode=true,name=X-Plex-Platform"`
|
|
DeviceName *string `queryParam:"style=form,explode=true,name=X-Plex-Device"`
|
|
}
|
|
|
|
func (o *Globals) GetClientID() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.ClientID
|
|
}
|
|
|
|
func (o *Globals) GetClientName() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.ClientName
|
|
}
|
|
|
|
func (o *Globals) GetClientVersion() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.ClientVersion
|
|
}
|
|
|
|
func (o *Globals) GetClientPlatform() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.ClientPlatform
|
|
}
|
|
|
|
func (o *Globals) GetDeviceName() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.DeviceName
|
|
}
|