ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.635.1

This commit is contained in:
speakeasybot
2025-10-07 00:11:50 +00:00
parent 484b48c271
commit 0a712f5595
191 changed files with 13016 additions and 10957 deletions

View File

@@ -11,11 +11,11 @@ type DeletePlaylistRequest struct {
PlaylistID float64 `pathParam:"style=simple,explode=false,name=playlistID"`
}
func (o *DeletePlaylistRequest) GetPlaylistID() float64 {
if o == nil {
func (d *DeletePlaylistRequest) GetPlaylistID() float64 {
if d == nil {
return 0.0
}
return o.PlaylistID
return d.PlaylistID
}
type DeletePlaylistResponse struct {
@@ -27,23 +27,23 @@ type DeletePlaylistResponse struct {
RawResponse *http.Response
}
func (o *DeletePlaylistResponse) GetContentType() string {
if o == nil {
func (d *DeletePlaylistResponse) GetContentType() string {
if d == nil {
return ""
}
return o.ContentType
return d.ContentType
}
func (o *DeletePlaylistResponse) GetStatusCode() int {
if o == nil {
func (d *DeletePlaylistResponse) GetStatusCode() int {
if d == nil {
return 0
}
return o.StatusCode
return d.StatusCode
}
func (o *DeletePlaylistResponse) GetRawResponse() *http.Response {
if o == nil {
func (d *DeletePlaylistResponse) GetRawResponse() *http.Response {
if d == nil {
return nil
}
return o.RawResponse
return d.RawResponse
}