mirror of
https://github.com/LukeHagar/plexterraform.git
synced 2025-12-09 20:47:45 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.148.0
This commit is contained in:
@@ -9,6 +9,10 @@ import (
|
||||
type UpdatePlaylistRequest struct {
|
||||
// the ID of the playlist
|
||||
PlaylistID float64 `pathParam:"style=simple,explode=false,name=playlistID"`
|
||||
// name of the playlist
|
||||
Title *string `queryParam:"style=form,explode=true,name=title"`
|
||||
// summary description of the playlist
|
||||
Summary *string `queryParam:"style=form,explode=true,name=summary"`
|
||||
}
|
||||
|
||||
func (o *UpdatePlaylistRequest) GetPlaylistID() float64 {
|
||||
@@ -18,6 +22,20 @@ func (o *UpdatePlaylistRequest) GetPlaylistID() float64 {
|
||||
return o.PlaylistID
|
||||
}
|
||||
|
||||
func (o *UpdatePlaylistRequest) GetTitle() *string {
|
||||
if o == nil {
|
||||
return nil
|
||||
}
|
||||
return o.Title
|
||||
}
|
||||
|
||||
func (o *UpdatePlaylistRequest) GetSummary() *string {
|
||||
if o == nil {
|
||||
return nil
|
||||
}
|
||||
return o.Summary
|
||||
}
|
||||
|
||||
type UpdatePlaylistErrors struct {
|
||||
Code *float64 `json:"code,omitempty"`
|
||||
Message *string `json:"message,omitempty"`
|
||||
|
||||
Reference in New Issue
Block a user