/* Options: Date: 2025-07-18 00:44:34 SwiftVersion: 5.0 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: InvestmentChoiceSaveRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/members/{EmployeeGuid}/investmentchoice", "POST") public class InvestmentChoiceSaveRequest : IReturn, Codable { public typealias Return = InvestmentChoiceResponse public var employeeGuid:String? //investmentChoice:Object ignored. Type could not be extended in Swift required public init(){} } public class InvestmentChoiceResponse : Codable { public var success:Bool? public var code:Int? public var message:String? required public init(){} }