/* Options: Date: 2025-07-17 23:40:23 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: BeneficiaryRequest.* //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="/beneficiary/save", Verbs="POST") public static class BeneficiaryRequest implements IReturn { public ArrayList beneficiaries = null; public Long memberId = null; public String createdBy = null; public ArrayList getBeneficiaries() { return beneficiaries; } public BeneficiaryRequest setBeneficiaries(ArrayList value) { this.beneficiaries = value; return this; } public Long getMemberId() { return memberId; } public BeneficiaryRequest setMemberId(Long value) { this.memberId = value; return this; } public String getCreatedBy() { return createdBy; } public BeneficiaryRequest setCreatedBy(String value) { this.createdBy = value; return this; } private static Object responseType = HttpWebResponse.class; public Object getResponseType() { return responseType; } } public static class Beneficiary { public Integer id = null; public Integer memberId = null; public String name = null; public Date birthdate = null; public String relationshipToMember = null; public String identificationNumber = null; public Integer allocation = null; public Integer getId() { return id; } public Beneficiary setId(Integer value) { this.id = value; return this; } public Integer getMemberId() { return memberId; } public Beneficiary setMemberId(Integer value) { this.memberId = value; return this; } public String getName() { return name; } public Beneficiary setName(String value) { this.name = value; return this; } public Date getBirthdate() { return birthdate; } public Beneficiary setBirthdate(Date value) { this.birthdate = value; return this; } public String getRelationshipToMember() { return relationshipToMember; } public Beneficiary setRelationshipToMember(String value) { this.relationshipToMember = value; return this; } public String getIdentificationNumber() { return identificationNumber; } public Beneficiary setIdentificationNumber(String value) { this.identificationNumber = value; return this; } public Integer getAllocation() { return allocation; } public Beneficiary setAllocation(Integer value) { this.allocation = value; return this; } } public static class Beneficiary implements IId, ITimestamp { public Long id = null; public Long memberId = null; public String name = null; public Date birthdate = null; public String relationshipToMember = null; public String identificationNumber = null; public Integer allocation = null; public Date dateCreated = null; public String createdBy = null; public Date dateUpdated = null; public String updatedBy = null; public byte[] timestamp = null; public Long getId() { return id; } public Beneficiary setId(Long value) { this.id = value; return this; } public Long getMemberId() { return memberId; } public Beneficiary setMemberId(Long value) { this.memberId = value; return this; } public String getName() { return name; } public Beneficiary setName(String value) { this.name = value; return this; } public Date getBirthdate() { return birthdate; } public Beneficiary setBirthdate(Date value) { this.birthdate = value; return this; } public String getRelationshipToMember() { return relationshipToMember; } public Beneficiary setRelationshipToMember(String value) { this.relationshipToMember = value; return this; } public String getIdentificationNumber() { return identificationNumber; } public Beneficiary setIdentificationNumber(String value) { this.identificationNumber = value; return this; } public Integer getAllocation() { return allocation; } public Beneficiary setAllocation(Integer value) { this.allocation = value; return this; } public Date getDateCreated() { return dateCreated; } public Beneficiary setDateCreated(Date value) { this.dateCreated = value; return this; } public String getCreatedBy() { return createdBy; } public Beneficiary setCreatedBy(String value) { this.createdBy = value; return this; } public Date getDateUpdated() { return dateUpdated; } public Beneficiary setDateUpdated(Date value) { this.dateUpdated = value; return this; } public String getUpdatedBy() { return updatedBy; } public Beneficiary setUpdatedBy(String value) { this.updatedBy = value; return this; } public byte[] getTimestamp() { return timestamp; } public Beneficiary setTimestamp(byte[] value) { this.timestamp = value; return this; } } }