ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.148.0

This commit is contained in:
speakeasybot
2024-01-22 17:17:00 +00:00
parent a06808d74e
commit 37ef8aa8ec
35 changed files with 6299 additions and 630 deletions

View File

@@ -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"`