ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2

This commit is contained in:
speakeasybot
2024-06-22 00:19:59 +00:00
parent acc9cf3c62
commit e0b73fab9a
25 changed files with 1565 additions and 58 deletions

View File

@@ -9,6 +9,9 @@ import (
type GetMetadataChildrenRequest struct {
// the id of the library item to return the children of.
RatingKey float64 `pathParam:"style=simple,explode=false,name=ratingKey"`
// Adds additional elements to the response. Supported types are (Stream)
//
IncludeElements *string `queryParam:"style=form,explode=true,name=includeElements"`
}
func (o *GetMetadataChildrenRequest) GetRatingKey() float64 {
@@ -18,6 +21,13 @@ func (o *GetMetadataChildrenRequest) GetRatingKey() float64 {
return o.RatingKey
}
func (o *GetMetadataChildrenRequest) GetIncludeElements() *string {
if o == nil {
return nil
}
return o.IncludeElements
}
type GetMetadataChildrenErrors struct {
Code *float64 `json:"code,omitempty"`
Message *string `json:"message,omitempty"`