/* Options: Date: 2026-04-05 18:18:18 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: EnquiriesSendToHistory.* //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/Send-To-History", Verbs="GET") public static class EnquiriesSendToHistory implements IReturn { public Integer Id = null; public Integer getId() { return Id; } public EnquiriesSendToHistory setId(Integer value) { this.Id = value; return this; } private static Object responseType = SavingResult.class; public Object getResponseType() { return responseType; } } public static class SavingResult { public Integer Id = null; public UUID GuidId = null; public SavingResultStatus Status = null; public ArrayList Errors = null; public Integer getId() { return Id; } public SavingResult setId(Integer value) { this.Id = value; return this; } public UUID getGuidId() { return GuidId; } public SavingResult setGuidId(UUID value) { this.GuidId = value; return this; } public SavingResultStatus getStatus() { return Status; } public SavingResult setStatus(SavingResultStatus value) { this.Status = value; return this; } public ArrayList getErrors() { return Errors; } public SavingResult setErrors(ArrayList value) { this.Errors = value; return this; } } public static enum SavingResultStatus { Success, Error; } public static class SavingResultErrors { public String Error = null; public String getError() { return Error; } public SavingResultErrors setError(String value) { this.Error = value; return this; } } }