/* Options: Date: 2026-04-05 18:16:54 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: EnquiryForward.* //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/Forward", Verbs="GET") public static class EnquiryForward implements IReturn { public Integer EnquiryId = null; public UUID EnquiryGuid = null; public Integer VesselId = null; public Integer getEnquiryId() { return EnquiryId; } public EnquiryForward setEnquiryId(Integer value) { this.EnquiryId = value; return this; } public UUID getEnquiryGuid() { return EnquiryGuid; } public EnquiryForward setEnquiryGuid(UUID value) { this.EnquiryGuid = value; return this; } public Integer getVesselId() { return VesselId; } public EnquiryForward setVesselId(Integer value) { this.VesselId = value; return this; } private static Object responseType = APIForwardEnquiryViewModel.class; public Object getResponseType() { return responseType; } } public static class APIForwardEnquiryViewModel { public Integer VesselId = null; public Integer EnquiryId = null; public UUID EnquiryGuid = null; public ArrayList GetEntityAccounts = null; public Integer getVesselId() { return VesselId; } public APIForwardEnquiryViewModel setVesselId(Integer value) { this.VesselId = value; return this; } public Integer getEnquiryId() { return EnquiryId; } public APIForwardEnquiryViewModel setEnquiryId(Integer value) { this.EnquiryId = value; return this; } public UUID getEnquiryGuid() { return EnquiryGuid; } public APIForwardEnquiryViewModel setEnquiryGuid(UUID value) { this.EnquiryGuid = value; return this; } public ArrayList getGetEntityAccounts() { return GetEntityAccounts; } public APIForwardEnquiryViewModel setGetEntityAccounts(ArrayList value) { this.GetEntityAccounts = value; return this; } } public static class EntityAccountsViewModel { public Integer Id = null; public String Type = null; public String Name = null; public Integer LinkedVesselId = null; public Integer getId() { return Id; } public EntityAccountsViewModel setId(Integer value) { this.Id = value; return this; } public String getType() { return Type; } public EntityAccountsViewModel setType(String value) { this.Type = value; return this; } public String getName() { return Name; } public EntityAccountsViewModel setName(String value) { this.Name = value; return this; } public Integer getLinkedVesselId() { return LinkedVesselId; } public EntityAccountsViewModel setLinkedVesselId(Integer value) { this.LinkedVesselId = value; return this; } } }