ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1

This commit is contained in:
speakeasybot
2023-12-25 01:08:54 +00:00
parent 7b1a8e6d93
commit 77aa3835df
134 changed files with 20503 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
// 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
}