regenerated with new spec

This commit is contained in:
Luke Hagar
2024-09-09 18:15:22 +00:00
parent e4db9f59ee
commit 3cfd677a46
678 changed files with 32760 additions and 8167 deletions

View File

@@ -1,4 +1,4 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
package operations
@@ -7,15 +7,17 @@ import (
)
type DeleteLibraryRequest struct {
// the Id of the library to query
SectionID float64 `pathParam:"style=simple,explode=false,name=sectionId"`
// The unique key of the Plex library.
// Note: This is unique in the context of the Plex server.
//
SectionKey int `pathParam:"style=simple,explode=false,name=sectionKey"`
}
func (o *DeleteLibraryRequest) GetSectionID() float64 {
func (o *DeleteLibraryRequest) GetSectionKey() int {
if o == nil {
return 0.0
return 0
}
return o.SectionID
return o.SectionKey
}
type DeleteLibraryResponse struct {