/* Options: Date: 2024-10-18 04:31:22 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: GetProjectsCount.* //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="/projects/count", Verbs="GET POST") public static class GetProjectsCount implements IReturn { public Integer PageSize = null; public Integer PageNumber = null; public String SearchCriteria = null; public Boolean Active = null; public UUID RegistrationProfileFieldID = null; public ArrayList DependableFields = null; public Integer getPageSize() { return PageSize; } public GetProjectsCount setPageSize(Integer value) { this.PageSize = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetProjectsCount setPageNumber(Integer value) { this.PageNumber = value; return this; } public String getSearchCriteria() { return SearchCriteria; } public GetProjectsCount setSearchCriteria(String value) { this.SearchCriteria = value; return this; } public Boolean isActive() { return Active; } public GetProjectsCount setActive(Boolean value) { this.Active = value; return this; } public UUID getRegistrationProfileFieldID() { return RegistrationProfileFieldID; } public GetProjectsCount setRegistrationProfileFieldID(UUID value) { this.RegistrationProfileFieldID = value; return this; } public ArrayList getDependableFields() { return DependableFields; } public GetProjectsCount setDependableFields(ArrayList value) { this.DependableFields = value; return this; } private static Object responseType = Integer.class; 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; } } }