/* Options: Date: 2026-04-05 18:21:16 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: GetBuyingTermsForEnquiryAndEntity.* //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="/Buying-Terms/Get-Buying-Terms-For-Enquiry-And-Entity", Verbs="GET") public static class GetBuyingTermsForEnquiryAndEntity implements IReturn { public Integer EnquiryId = null; public Integer EntityContactId = null; public Integer getEnquiryId() { return EnquiryId; } public GetBuyingTermsForEnquiryAndEntity setEnquiryId(Integer value) { this.EnquiryId = value; return this; } public Integer getEntityContactId() { return EntityContactId; } public GetBuyingTermsForEnquiryAndEntity setEntityContactId(Integer value) { this.EntityContactId = value; return this; } private static Object responseType = GetBuyingTermsForEnquiryAndEntityViewModel.class; public Object getResponseType() { return responseType; } } public static class GetBuyingTermsForEnquiryAndEntityViewModel { public ArrayList Information = null; public ArrayList getInformation() { return Information; } public GetBuyingTermsForEnquiryAndEntityViewModel setInformation(ArrayList value) { this.Information = value; return this; } } }