/* Options: Date: 2025-07-04 09:29:19 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: QuickLookup.* //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 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 RegistrationProfileFieldValue { public UUID DocumentFieldID = null; public String Value = null; public String ShadowValue = null; public Boolean IsModifiedByUser = null; public UUID getDocumentFieldID() { return DocumentFieldID; } public RegistrationProfileFieldValue setDocumentFieldID(UUID value) { this.DocumentFieldID = value; return this; } public String getValue() { return Value; } public RegistrationProfileFieldValue setValue(String value) { this.Value = value; return this; } public String getShadowValue() { return ShadowValue; } public RegistrationProfileFieldValue setShadowValue(String value) { this.ShadowValue = value; return this; } public Boolean getIsModifiedByUser() { return IsModifiedByUser; } public RegistrationProfileFieldValue setIsModifiedByUser(Boolean value) { this.IsModifiedByUser = 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; } }