// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. import Foundation extension Operations { /// A model object public struct GetRecentlyAddedField { public let key: String public let title: String public let type: String public let subType: String? /// Creates an object with the specified parameters /// /// public init(key: String, title: String, type: String, subType: String? = nil) { self.key = key self.title = title self.type = type self.subType = subType } }} extension Operations.GetRecentlyAddedField: Codable { enum CodingKeys: String, CodingKey { case key case title case type case subType } }