/* Options: Date: 2026-09-22 23:40:49 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: EstimateAssembliesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/Rfp/{RfpDocumentUID}/Estimate/Assemblies", "GET,OPTIONS") public class EstimateAssembliesRequest : IReturn, Codable { public typealias Return = EstimateAssembliesResponse public var rfpDocumentUID:String? required public init(){} } public class EstimateAssembliesResponse : Codable { public var responseStatus:ResponseStatus? public var applied:[AppliedAssembly] = [] public var available:[AssemblyOption] = [] required public init(){} } public class AppliedAssembly : Codable { public var taskSeq:Int? public var templateUID:String? public var templateName:String? public var appliedBy:String? public var appliedAt:Date? required public init(){} } public class AssemblyOption : Codable { public var templateUID:String? public var name:String? public var unit:String? public var pack:String? public var isGlobal:Bool? public var summary:String? required public init(){} }