/* Options: Date: 2025-08-05 01:59:39 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: ReindexAllRequest.* //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="/search/reindexAll", Verbs="POST") public static class ReindexAllRequest implements IReturn { private static Object responseType = ReindexAllResponse.class; public Object getResponseType() { return responseType; } } public static class ReindexAllResponse { public String ErrorMessage = null; public String getErrorMessage() { return ErrorMessage; } public ReindexAllResponse setErrorMessage(String value) { this.ErrorMessage = value; return this; } } }