mirror of
https://github.com/LukeHagar/plexgo.git
synced 2025-12-06 04:20:46 +00:00
15 lines
303 B
Go
15 lines
303 B
Go
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
|
|
package components
|
|
|
|
type Security struct {
|
|
AccessToken *string `security:"scheme,type=apiKey,subtype=header,name=X-Plex-Token"`
|
|
}
|
|
|
|
func (s *Security) GetAccessToken() *string {
|
|
if s == nil {
|
|
return nil
|
|
}
|
|
return s.AccessToken
|
|
}
|