ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.513.4

This commit is contained in:
speakeasybot
2025-03-10 00:10:03 +00:00
parent 33fe0755b5
commit 9b0ac863a4
69 changed files with 2540 additions and 3536 deletions

View File

@@ -1,90 +0,0 @@
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package sdkerrors
import (
"encoding/json"
"net/http"
)
type GetOnDeckLibraryErrors struct {
Code *int `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
Status *int `json:"status,omitempty"`
}
func (o *GetOnDeckLibraryErrors) GetCode() *int {
if o == nil {
return nil
}
return o.Code
}
func (o *GetOnDeckLibraryErrors) GetMessage() *string {
if o == nil {
return nil
}
return o.Message
}
func (o *GetOnDeckLibraryErrors) GetStatus() *int {
if o == nil {
return nil
}
return o.Status
}
// GetOnDeckUnauthorized - Unauthorized - Returned if the X-Plex-Token is missing from the header or query.
type GetOnDeckUnauthorized struct {
Errors []GetOnDeckLibraryErrors `json:"errors,omitempty"`
// Raw HTTP response; suitable for custom response parsing
RawResponse *http.Response `json:"-"`
}
var _ error = &GetOnDeckUnauthorized{}
func (e *GetOnDeckUnauthorized) Error() string {
data, _ := json.Marshal(e)
return string(data)
}
type GetOnDeckErrors struct {
Code *int `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
Status *int `json:"status,omitempty"`
}
func (o *GetOnDeckErrors) GetCode() *int {
if o == nil {
return nil
}
return o.Code
}
func (o *GetOnDeckErrors) GetMessage() *string {
if o == nil {
return nil
}
return o.Message
}
func (o *GetOnDeckErrors) GetStatus() *int {
if o == nil {
return nil
}
return o.Status
}
// GetOnDeckBadRequest - Bad Request - A parameter was not specified, or was specified incorrectly.
type GetOnDeckBadRequest struct {
Errors []GetOnDeckErrors `json:"errors,omitempty"`
// Raw HTTP response; suitable for custom response parsing
RawResponse *http.Response `json:"-"`
}
var _ error = &GetOnDeckBadRequest{}
func (e *GetOnDeckBadRequest) Error() string {
data, _ := json.Marshal(e)
return string(data)
}