ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.308.1

This commit is contained in:
speakeasybot
2024-06-15 00:19:59 +00:00
parent edf95196c3
commit acc9cf3c62
17 changed files with 1448 additions and 111 deletions

View File

@@ -90,14 +90,14 @@ func (e *Tag) UnmarshalJSON(data []byte) error {
type GetLibraryItemsRequest struct {
// the Id of the library to query
SectionID int64 `pathParam:"style=simple,explode=false,name=sectionId"`
SectionID any `pathParam:"style=simple,explode=false,name=sectionId"`
// A key representing a specific tag within the section.
Tag Tag `pathParam:"style=simple,explode=false,name=tag"`
}
func (o *GetLibraryItemsRequest) GetSectionID() int64 {
func (o *GetLibraryItemsRequest) GetSectionID() any {
if o == nil {
return 0
return nil
}
return o.SectionID
}