/* Options: Date: 2026-04-05 18:23:13 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: EnquiryPortHasSupplyDeskContact.* //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/Port-Has-Supply-Desk-Contact", Verbs="GET") public static class EnquiryPortHasSupplyDeskContact implements IReturn { public Integer PortId = null; public Integer EntityId = null; public Integer getPortId() { return PortId; } public EnquiryPortHasSupplyDeskContact setPortId(Integer value) { this.PortId = value; return this; } public Integer getEntityId() { return EntityId; } public EnquiryPortHasSupplyDeskContact setEntityId(Integer value) { this.EntityId = value; return this; } private static Object responseType = PortHasSupplyDeskContactViewModel.class; public Object getResponseType() { return responseType; } } public static class PortHasSupplyDeskContactViewModel { public Boolean ApplySupplyDeskRules = null; public String PortName = null; public UUID EntityContactGuid = null; public Integer EntityContactId = null; public String EntityContactEmailAddress = null; public String Name = null; public String ImageUrl = null; public UUID EntityContactImageGuid = null; public Boolean isApplySupplyDeskRules() { return ApplySupplyDeskRules; } public PortHasSupplyDeskContactViewModel setApplySupplyDeskRules(Boolean value) { this.ApplySupplyDeskRules = value; return this; } public String getPortName() { return PortName; } public PortHasSupplyDeskContactViewModel setPortName(String value) { this.PortName = value; return this; } public UUID getEntityContactGuid() { return EntityContactGuid; } public PortHasSupplyDeskContactViewModel setEntityContactGuid(UUID value) { this.EntityContactGuid = value; return this; } public Integer getEntityContactId() { return EntityContactId; } public PortHasSupplyDeskContactViewModel setEntityContactId(Integer value) { this.EntityContactId = value; return this; } public String getEntityContactEmailAddress() { return EntityContactEmailAddress; } public PortHasSupplyDeskContactViewModel setEntityContactEmailAddress(String value) { this.EntityContactEmailAddress = value; return this; } public String getName() { return Name; } public PortHasSupplyDeskContactViewModel setName(String value) { this.Name = value; return this; } public String getImageUrl() { return ImageUrl; } public PortHasSupplyDeskContactViewModel setImageUrl(String value) { this.ImageUrl = value; return this; } public UUID getEntityContactImageGuid() { return EntityContactImageGuid; } public PortHasSupplyDeskContactViewModel setEntityContactImageGuid(UUID value) { this.EntityContactImageGuid = value; return this; } } }