/* Options: Date: 2026-04-05 16:35:46 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EnquiryForwardPost.* //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="/Enquiries/Forward", Verbs="POST") public static class EnquiryForwardPost implements IReturn { public Integer EnquiryId = null; public Integer AccountId = null; public ArrayList SelectedEntityContactIds = null; public Integer getEnquiryId() { return EnquiryId; } public EnquiryForwardPost setEnquiryId(Integer value) { this.EnquiryId = value; return this; } public Integer getAccountId() { return AccountId; } public EnquiryForwardPost setAccountId(Integer value) { this.AccountId = value; return this; } public ArrayList getSelectedEntityContactIds() { return SelectedEntityContactIds; } public EnquiryForwardPost setSelectedEntityContactIds(ArrayList value) { this.SelectedEntityContactIds = value; return this; } private static Object responseType = APIForwardEnquiryResultViewModel.class; public Object getResponseType() { return responseType; } } public static class APIForwardEnquiryResultViewModel { public String Result = null; public ArrayList APIForwardEnquiryResultErrors = null; public String getResult() { return Result; } public APIForwardEnquiryResultViewModel setResult(String value) { this.Result = value; return this; } public ArrayList getApiForwardEnquiryResultErrors() { return APIForwardEnquiryResultErrors; } public APIForwardEnquiryResultViewModel setApiForwardEnquiryResultErrors(ArrayList value) { this.APIForwardEnquiryResultErrors = value; return this; } } public static class APIForwardEnquiryResultErrorsViewModel { public String Error = null; public String getError() { return Error; } public APIForwardEnquiryResultErrorsViewModel setError(String value) { this.Error = value; return this; } } }