/* Options: Date: 2026-03-14 18:38:30 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-sms-wa.azurewebsites.net/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CheckCommStatus.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Returns status of the specified communication entity , or NONE if no communication status is found */ @Route(Path="/status/checkcomm", Verbs="GET") @Api(Description="Returns status of the specified communication entity , or NONE if no communication status is found") public static class CheckCommStatus implements IReturn { public UUID EntityId = null; public UUID getEntityId() { return EntityId; } public CheckCommStatus setEntityId(UUID value) { this.EntityId = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } }