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