/* Options: Date: 2026-04-05 18:15:59 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: GetExistingContactsInSupplierForEntity.* //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="/Suppliers/Get-Existing-Contacts-In-Supplier-For-Entity", Verbs="GET") public static class GetExistingContactsInSupplierForEntity { public Integer EntityId = null; public Integer getEntityId() { return EntityId; } public GetExistingContactsInSupplierForEntity setEntityId(Integer value) { this.EntityId = value; return this; } } }