mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 12:37:46 +00:00
19 lines
515 B
Go
19 lines
515 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). 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)
|
|
//
|
|
XPlexClientIdentifier *string `header:"style=simple,explode=false,name=X-Plex-Client-Identifier"`
|
|
}
|
|
|
|
func (o *Globals) GetXPlexClientIdentifier() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.XPlexClientIdentifier
|
|
}
|