/* Options: Date: 2025-07-17 23:33:47 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: NewJoinerFormAnswerRequest.* //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="/newjoinerform/save", Verbs="POST") public static class NewJoinerFormAnswerRequest { public Long memberId = null; public Boolean isBeneficiaryPoliticallyExposed = null; public String explanation1 = null; public Boolean isSomeoneCloseToBeneficiaryPoliticallyExposed = null; public String explanation2 = null; public Long getMemberId() { return memberId; } public NewJoinerFormAnswerRequest setMemberId(Long value) { this.memberId = value; return this; } public Boolean getIsBeneficiaryPoliticallyExposed() { return isBeneficiaryPoliticallyExposed; } public NewJoinerFormAnswerRequest setIsBeneficiaryPoliticallyExposed(Boolean value) { this.isBeneficiaryPoliticallyExposed = value; return this; } public String getExplanation1() { return explanation1; } public NewJoinerFormAnswerRequest setExplanation1(String value) { this.explanation1 = value; return this; } public Boolean getIsSomeoneCloseToBeneficiaryPoliticallyExposed() { return isSomeoneCloseToBeneficiaryPoliticallyExposed; } public NewJoinerFormAnswerRequest setIsSomeoneCloseToBeneficiaryPoliticallyExposed(Boolean value) { this.isSomeoneCloseToBeneficiaryPoliticallyExposed = value; return this; } public String getExplanation2() { return explanation2; } public NewJoinerFormAnswerRequest setExplanation2(String value) { this.explanation2 = value; return this; } } }