/* Options: Date: 2026-04-05 18:17:50 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: AddSupplierToPort.* //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/Add-Supplier-To-Port", Verbs="GET") public static class AddSupplierToPort { public Integer PortId = null; public ArrayList SupplierContacts = null; public String EntityName = null; public Integer EntityId = null; public Integer getPortId() { return PortId; } public AddSupplierToPort setPortId(Integer value) { this.PortId = value; return this; } public ArrayList getSupplierContacts() { return SupplierContacts; } public AddSupplierToPort setSupplierContacts(ArrayList value) { this.SupplierContacts = value; return this; } public String getEntityName() { return EntityName; } public AddSupplierToPort setEntityName(String value) { this.EntityName = value; return this; } public Integer getEntityId() { return EntityId; } public AddSupplierToPort setEntityId(Integer value) { this.EntityId = value; return this; } } }