ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2

This commit is contained in:
speakeasybot
2024-06-22 00:14:04 +00:00
parent 3c7871adc5
commit d0adbbd22a
60 changed files with 2339 additions and 776 deletions

View File

@@ -9,15 +9,21 @@ extension Operations {
public let sectionId: AnyValue
/// A key representing a specific tag within the section.
public let tag: Operations.Tag
/// Adds the Guids object to the response
///
public let includeGuids: Int?
/// Creates an object with the specified parameters
///
/// - Parameter sectionId: the Id of the library to query
/// - Parameter tag: A key representing a specific tag within the section.
/// - Parameter includeGuids: Adds the Guids object to the response
///
///
public init(sectionId: AnyValue, tag: Operations.Tag) {
public init(sectionId: AnyValue, tag: Operations.Tag, includeGuids: Int? = nil) {
self.sectionId = sectionId
self.tag = tag
self.includeGuids = includeGuids
}
}
}