ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.295.1

This commit is contained in:
speakeasybot
2024-05-23 15:57:47 +00:00
parent 2ada605e1d
commit 6b8d369625
30 changed files with 1756 additions and 634 deletions

View File

@@ -0,0 +1,24 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// The contents of the library by section and tag
public struct GetLibraryItemsResponseBody {
public let mediaContainer: Operations.GetLibraryItemsMediaContainer?
/// Creates an object with the specified parameters
///
///
public init(mediaContainer: Operations.GetLibraryItemsMediaContainer? = nil) {
self.mediaContainer = mediaContainer
}
}
}
extension Operations.GetLibraryItemsResponseBody: Codable {
enum CodingKeys: String, CodingKey {
case mediaContainer = "MediaContainer"
}
}