/* Options: Date: 2025-07-18 00:18:57 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvestmentChoiceSaveRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/members/{EmployeeGuid}/investmentchoice", Verbs="POST") open class InvestmentChoiceSaveRequest : IReturn { var employeeGuid:UUID? = null var investmentChoice:Object? = null companion object { private val responseType = InvestmentChoiceResponse::class.java } override fun getResponseType(): Any? = InvestmentChoiceSaveRequest.responseType } open class InvestmentChoiceResponse { var success:Boolean? = null var code:Int? = null var message:String? = null }