mirror of
https://github.com/LukeHagar/plexterraform.git
synced 2025-12-06 12:37:47 +00:00
15 lines
299 B
Go
15 lines
299 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package shared
|
|
|
|
type Security struct {
|
|
AccessToken string `security:"scheme,type=apiKey,subtype=header,name=X-Plex-Token"`
|
|
}
|
|
|
|
func (o *Security) GetAccessToken() string {
|
|
if o == nil {
|
|
return ""
|
|
}
|
|
return o.AccessToken
|
|
}
|