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