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

@@ -5,17 +5,13 @@ import Foundation
extension Operations {
/// A model object
public struct User {
public let id: String?
public let thumb: String?
public let title: String?
public let id: Int?
/// Creates an object with the specified parameters
///
///
public init(id: String? = nil, thumb: String? = nil, title: String? = nil) {
public init(id: Int? = nil) {
self.id = id
self.thumb = thumb
self.title = title
}
}
}
@@ -23,8 +19,6 @@ extension Operations {
extension Operations.User: Codable {
enum CodingKeys: String, CodingKey {
case id
case thumb
case title
}
}