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

@@ -8,13 +8,19 @@ extension Operations {
/// the id of the library item to return the children of.
@DecimalSerialized
public private(set) var ratingKey: Double
/// Adds additional elements to the response. Supported types are (Stream)
///
public let includeElements: String?
/// Creates an object with the specified parameters
///
/// - Parameter ratingKey: the id of the library item to return the children of.
/// - Parameter includeElements: Adds additional elements to the response. Supported types are (Stream)
///
///
public init(ratingKey: Double) {
public init(ratingKey: Double, includeElements: String? = nil) {
self._ratingKey = DecimalSerialized<Double>(wrappedValue: ratingKey)
self.includeElements = includeElements
}
}
}