/* Options: Date: 2024-10-18 04:14:45 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProcessQuickLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class QuickLookup implements IReturn { public UUID DocumentID = null; public String DocumentFieldID = null; public String RegistrationProfileFieldID = null; public String LookupValue = null; public ArrayList DependableFields = null; public Boolean ApplyOptionalFilters = null; public UUID getDocumentID() { return DocumentID; } public QuickLookup setDocumentID(UUID value) { this.DocumentID = value; return this; } public String getDocumentFieldID() { return DocumentFieldID; } public QuickLookup setDocumentFieldID(String value) { this.DocumentFieldID = value; return this; } public String getRegistrationProfileFieldID() { return RegistrationProfileFieldID; } public QuickLookup setRegistrationProfileFieldID(String value) { this.RegistrationProfileFieldID = value; return this; } public String getLookupValue() { return LookupValue; } public QuickLookup setLookupValue(String value) { this.LookupValue = value; return this; } public ArrayList getDependableFields() { return DependableFields; } public QuickLookup setDependableFields(ArrayList value) { this.DependableFields = value; return this; } public Boolean isApplyOptionalFilters() { return ApplyOptionalFilters; } public QuickLookup setApplyOptionalFilters(Boolean value) { this.ApplyOptionalFilters = value; return this; } private static Object responseType = QuickLookupResponse.class; public Object getResponseType() { return responseType; } } public static class ProcessQuickLookup extends QuickLookup implements IReturn { public String EntityContext = null; public String getEntityContext() { return EntityContext; } public ProcessQuickLookup setEntityContext(String value) { this.EntityContext = value; return this; } private static Object responseType = QuickLookupResponse.class; public Object getResponseType() { return responseType; } } public static class QuickLookupResponse implements IBaseQuickLookupResponse { public Integer NumberOfAllRecords = null; public ArrayList> Values = null; public ArrayList QuickAddOptions = null; public Integer getNumberOfAllRecords() { return NumberOfAllRecords; } public QuickLookupResponse setNumberOfAllRecords(Integer value) { this.NumberOfAllRecords = value; return this; } public ArrayList> getValues() { return Values; } public QuickLookupResponse setValues(ArrayList> value) { this.Values = value; return this; } public ArrayList getQuickAddOptions() { return QuickAddOptions; } public QuickLookupResponse setQuickAddOptions(ArrayList value) { this.QuickAddOptions = value; return this; } } public static class QuickAddOption { public String Name = null; public String EntityType = null; public String getName() { return Name; } public QuickAddOption setName(String value) { this.Name = value; return this; } public String getEntityType() { return EntityType; } public QuickAddOption setEntityType(String value) { this.EntityType = value; return this; } } public static interface IBaseQuickLookupResponse { public Integer NumberOfAllRecords = null; public ArrayList QuickAddOptions = null; } }