/* Options: Date: 2026-03-14 18:41:19 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-sms-wa.azurewebsites.net/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckProcessingStatus.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Returns processing status of the specified entity , or NONE if no processing status is found */ // @Route("/status/checkproc", "GET") // @Api(Description="Returns processing status of the specified entity , or NONE if no processing status is found") class CheckProcessingStatus implements IReturn, IConvertible, IGet { String? EntityId; CheckProcessingStatus({this.EntityId}); CheckProcessingStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityId = json['EntityId']; return this; } Map toJson() => { 'EntityId': EntityId }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "CheckProcessingStatus"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'production_eros_gateway_api_sms_wa.azurewebsites.net', types: { 'CheckProcessingStatus': TypeInfo(TypeOf.Class, create:() => CheckProcessingStatus()), });