/* Options: Date: 2025-07-17 23:52:35 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: InvestmentChoiceSaveRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/members/{EmployeeGuid}/investmentchoice", Verbs="POST") public static class InvestmentChoiceSaveRequest implements IReturn { public UUID employeeGuid = null; public Object investmentChoice = null; public UUID getEmployeeGuid() { return employeeGuid; } public InvestmentChoiceSaveRequest setEmployeeGuid(UUID value) { this.employeeGuid = value; return this; } public Object getInvestmentChoice() { return investmentChoice; } public InvestmentChoiceSaveRequest setInvestmentChoice(Object value) { this.investmentChoice = value; return this; } private static Object responseType = InvestmentChoiceResponse.class; public Object getResponseType() { return responseType; } } public static class InvestmentChoiceResponse { public Boolean success = null; public Integer code = null; public String message = null; public Boolean isSuccess() { return success; } public InvestmentChoiceResponse setSuccess(Boolean value) { this.success = value; return this; } public Integer getCode() { return code; } public InvestmentChoiceResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public InvestmentChoiceResponse setMessage(String value) { this.message = value; return this; } } }