/* Options: Date: 2026-03-14 18:40:53 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: CheckCommStatus.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Returns status of the specified communication entity , or NONE if no communication status is found */ // @Route("/status/checkcomm", "GET") // @Api(Description="Returns status of the specified communication entity , or NONE if no communication status is found") class CheckCommStatus implements IReturn, IConvertible, IGet { String? EntityId; CheckCommStatus({this.EntityId}); CheckCommStatus.fromJson(Map json) { fromMap(json); } fromMap(Map json) { EntityId = json['EntityId']; return this; } Map toJson() => { 'EntityId': EntityId }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "CheckCommStatus"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'production_eros_gateway_api_sms_wa.azurewebsites.net', types: { 'CheckCommStatus': TypeInfo(TypeOf.Class, create:() => CheckCommStatus()), });