/* Options: Date: 2025-08-05 02:31:35 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReindexAllRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ReindexAllResponse implements IConvertible { String? ErrorMessage; ReindexAllResponse({this.ErrorMessage}); ReindexAllResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ErrorMessage = json['ErrorMessage']; return this; } Map toJson() => { 'ErrorMessage': ErrorMessage }; getTypeName() => "ReindexAllResponse"; TypeContext? context = _ctx; } // @Route("/search/reindexAll", "POST") class ReindexAllRequest implements IReturn, IConvertible, IPost { ReindexAllRequest(); ReindexAllRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => ReindexAllResponse(); getResponseTypeName() => "ReindexAllResponse"; getTypeName() => "ReindexAllRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'ReindexAllResponse': TypeInfo(TypeOf.Class, create:() => ReindexAllResponse()), 'ReindexAllRequest': TypeInfo(TypeOf.Class, create:() => ReindexAllRequest()), });