/* Options: Date: 2025-07-04 07:57:06 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: GetProjects.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/projects", Verbs="GET POST") public static class GetProjects implements IReturn>, IFilterRequest { public String SearchCriteria = null; public Integer PageSize = null; public Integer PageNumber = null; public String OrderBy = null; public Boolean Active = null; public UUID RegistrationProfileFieldID = null; public ArrayList DependableFields = null; public String getSearchCriteria() { return SearchCriteria; } public GetProjects setSearchCriteria(String value) { this.SearchCriteria = value; return this; } public Integer getPageSize() { return PageSize; } public GetProjects setPageSize(Integer value) { this.PageSize = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetProjects setPageNumber(Integer value) { this.PageNumber = value; return this; } public String getOrderBy() { return OrderBy; } public GetProjects setOrderBy(String value) { this.OrderBy = value; return this; } public Boolean isActive() { return Active; } public GetProjects setActive(Boolean value) { this.Active = value; return this; } public UUID getRegistrationProfileFieldID() { return RegistrationProfileFieldID; } public GetProjects setRegistrationProfileFieldID(UUID value) { this.RegistrationProfileFieldID = value; return this; } public ArrayList getDependableFields() { return DependableFields; } public GetProjects setDependableFields(ArrayList value) { this.DependableFields = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } 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 interface IFilterRequest { public UUID RegistrationProfileFieldID = null; } }