ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.401.2

This commit is contained in:
speakeasybot
2024-09-21 00:08:20 +00:00
parent b1a46864c8
commit 62f64fc047
61 changed files with 1610 additions and 1086 deletions

View File

@@ -19,6 +19,8 @@ extension Operations {
/// The GUID of each playlist is based on the filename.
///
public let path: String
/// Possibly the section ID to upload the playlist to, we are not certain.
public let sectionID: Int
/// Creates an object with the specified parameters
///
@@ -34,9 +36,11 @@ extension Operations {
/// If the `path` argument is a file, that file will be used to create a new playlist, with the name based on the filename of the file that created it.
/// The GUID of each playlist is based on the filename.
///
/// - Parameter sectionID: Possibly the section ID to upload the playlist to, we are not certain.
///
public init(force: Operations.QueryParamForce, path: String) {
public init(force: Operations.QueryParamForce, path: String, sectionID: Int) {
self.force = force
self.path = path
self.sectionID = sectionID
}
}}