/* Options: Date: 2025-07-04 08:48:03 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: GetDocumentSearch.* //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="/documents/search", Verbs="POST") public static class GetDocumentSearch implements IReturn>, IDocumentSearchCriteria { public String SearchCriteria = null; public Integer PageNumber = null; public Integer PageSize = null; public ArrayList ExcludeID = null; public Boolean AllVersions = null; public Boolean Archived = null; public String getSearchCriteria() { return SearchCriteria; } public GetDocumentSearch setSearchCriteria(String value) { this.SearchCriteria = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetDocumentSearch setPageNumber(Integer value) { this.PageNumber = value; return this; } public Integer getPageSize() { return PageSize; } public GetDocumentSearch setPageSize(Integer value) { this.PageSize = value; return this; } public ArrayList getExcludeID() { return ExcludeID; } public GetDocumentSearch setExcludeID(ArrayList value) { this.ExcludeID = value; return this; } public Boolean isAllVersions() { return AllVersions; } public GetDocumentSearch setAllVersions(Boolean value) { this.AllVersions = value; return this; } public Boolean isArchived() { return Archived; } public GetDocumentSearch setArchived(Boolean value) { this.Archived = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class SearchResult { public ArrayList Results = null; public Integer Total = null; public ArrayList getResults() { return Results; } public SearchResult setResults(ArrayList value) { this.Results = value; return this; } public Integer getTotal() { return Total; } public SearchResult setTotal(Integer value) { this.Total = value; return this; } } public static interface ISearchCriteria { public String SearchCriteria = null; } public static interface IDocumentSearchCriteria implements ISearchCriteria { public Boolean AllVersions = null; public Boolean Archived = null; } }