/* Options: Date: 2025-08-05 02:10:25 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetRecycleBinCount.* //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="/recycle-bin/items/count", Verbs="GET") public static class GetRecycleBinCount implements IReturn, IRecycleBinItemFilter { public String TypeName = null; public String SearchText = null; public String getTypeName() { return TypeName; } public GetRecycleBinCount setTypeName(String value) { this.TypeName = value; return this; } public String getSearchText() { return SearchText; } public GetRecycleBinCount setSearchText(String value) { this.SearchText = value; return this; } private static Object responseType = GetRecycleBinCountProxy.class; public Object getResponseType() { return responseType; } } public static class GetRecycleBinCountProxy { public Integer TotalCount = null; public Integer getTotalCount() { return TotalCount; } public GetRecycleBinCountProxy setTotalCount(Integer value) { this.TotalCount = value; return this; } } public static interface IRecycleBinItemFilter { public String TypeName = null; public String SearchText = null; } }