/* Options: Date: 2025-07-17 21:15:51 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: BeneficiaryRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/beneficiary/save", Verbs="POST") open class BeneficiaryRequest : IReturn { var beneficiaries:ArrayList = ArrayList() var memberId:Long? = null var createdBy:String? = null companion object { private val responseType = HttpWebResponse::class.java } override fun getResponseType(): Any? = BeneficiaryRequest.responseType } open class Beneficiary { var id:Int? = null var memberId:Int? = null var name:String? = null var birthdate:Date? = null var relationshipToMember:String? = null var identificationNumber:String? = null var allocation:Int? = null } open class Beneficiary : IId, ITimestamp { var id:Long? = null var memberId:Long? = null var name:String? = null var birthdate:Date? = null var relationshipToMember:String? = null var identificationNumber:String? = null var allocation:Int? = null var dateCreated:Date? = null var createdBy:String? = null var dateUpdated:Date? = null var updatedBy:String? = null var timestamp:ByteArray? = null }