/* Options: Date: 2025-07-18 00:23:12 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: InvestmentAllocationDataRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/investmentallocation/save", Verbs="POST") open class InvestmentAllocationDataRequest : IReturn { var investmentAllocations:ArrayList = ArrayList() var memberContribution:MemberContribution? = null var memberId:Long? = null var createdBy:String? = null var dateOfBirthSpouse:Date? = null var dateOfBirthYoungestChild:Date? = null var childrenCount:Short? = null var investmentStrategy:String? = null var isAdditionalInfoDisplayed:Boolean? = null companion object { private val responseType = HttpWebResponse::class.java } override fun getResponseType(): Any? = InvestmentAllocationDataRequest.responseType } open class InvestmentAllocation { var id:Long? = null var memberId:Long? = null var fundId:String? = null var currentBalancePercent:BigDecimal? = null var futureContributionPercent:BigDecimal? = null var currentBalanceFutureContributionPercent:BigDecimal? = null var dateCreated:Date? = null var createdBy:String? = null var dateUpdated:Date? = null var updatedBy:String? = null } open class MemberContribution { var id:Long? = null var memberId:Long? = null var choiceStartDate:Date? = null var choiceEndDate:Date? = null var baseContributionPercent:BigDecimal? = null var voluntaryContributionPercent:BigDecimal? = null var incentiveContributionPercent:BigDecimal? = null var totalContributionPercent:BigDecimal? = null var baseContributionValue:BigDecimal? = null var voluntaryContributionValue:BigDecimal? = null var incentiveContributionValue:BigDecimal? = null var totalContributionValue:BigDecimal? = null var dateCreated:Date? = null var createdBy:String? = null var dateUpdated:Date? = null var updatedBy:String? = null } open class InvestmentAllocation : IId, ITimestamp { var id:Long? = null var memberId:Long? = null var fundId:String? = null var currentBalancePercent:BigDecimal? = null var futureContributionPercent:BigDecimal? = null var currentBalanceFutureContributionPercent:BigDecimal? = null var dateCreated:Date? = null var createdBy:String? = null var dateUpdated:Date? = null var updatedBy:String? = null var timestamp:ByteArray? = null var member:Member? = null } open class MemberContribution : IId, ITimestamp { var id:Long? = null var memberId:Long? = null var choiceStartDate:Date? = null var choiceEndDate:Date? = null var baseContributionPercent:BigDecimal? = null var voluntaryContributionPercent:BigDecimal? = null var incentiveContributionPercent:BigDecimal? = null var totalContributionPercent:BigDecimal? = null var baseContributionValue:BigDecimal? = null var voluntaryContributionValue:BigDecimal? = null var incentiveContributionValue:BigDecimal? = null var totalContributionValue:BigDecimal? = null var dateCreated:Date? = null var createdBy:String? = null var dateUpdated:Date? = null var updatedBy:String? = null var timestamp:ByteArray? = null var member:Member? = null }