/* Options: Date: 2026-03-14 18:38:56 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: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckProcessingStatus.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description 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") export class CheckProcessingStatus implements IReturn { public EntityId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CheckProcessingStatus'; } public getMethod() { return 'GET'; } public createResponse() { return ''; } }