/* Options: Date: 2026-04-05 18:18: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: EnquiryAddBuyer.* //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/Add-Buyer", Verbs="POST") public static class EnquiryAddBuyer implements IReturn { public Integer EnquiryId = null; public UUID EnquiryGuid = null; public String BuyerCompany = null; public String BuyerEmailAddress = null; public Integer AccountId = null; public Integer EntityId = null; public Integer getEnquiryId() { return EnquiryId; } public EnquiryAddBuyer setEnquiryId(Integer value) { this.EnquiryId = value; return this; } public UUID getEnquiryGuid() { return EnquiryGuid; } public EnquiryAddBuyer setEnquiryGuid(UUID value) { this.EnquiryGuid = value; return this; } public String getBuyerCompany() { return BuyerCompany; } public EnquiryAddBuyer setBuyerCompany(String value) { this.BuyerCompany = value; return this; } public String getBuyerEmailAddress() { return BuyerEmailAddress; } public EnquiryAddBuyer setBuyerEmailAddress(String value) { this.BuyerEmailAddress = value; return this; } public Integer getAccountId() { return AccountId; } public EnquiryAddBuyer setAccountId(Integer value) { this.AccountId = value; return this; } public Integer getEntityId() { return EntityId; } public EnquiryAddBuyer setEntityId(Integer value) { this.EntityId = value; return this; } private static Object responseType = EnquiryAddBuyerViewModel.class; public Object getResponseType() { return responseType; } } public static class EnquiryAddBuyerViewModel { public String Status = null; public UUID EntityContactGuid = null; public ArrayList Errors = null; public String getStatus() { return Status; } public EnquiryAddBuyerViewModel setStatus(String value) { this.Status = value; return this; } public UUID getEntityContactGuid() { return EntityContactGuid; } public EnquiryAddBuyerViewModel setEntityContactGuid(UUID value) { this.EntityContactGuid = value; return this; } public ArrayList getErrors() { return Errors; } public EnquiryAddBuyerViewModel setErrors(ArrayList value) { this.Errors = value; return this; } } }