/* Options: Date: 2026-03-13 22:08:27 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: smsEnvoiTheMessage.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Service d'envoi d'un sms transactionnel via SMS Envoi */ // @Route("/smsenvoi_the_message/{the_message}", "GET") // @Api(Description="Service d'envoi d'un sms transactionnel via SMS Envoi") export class smsEnvoiTheMessage implements IReturn { /** @description The Message */ // @ApiMember(Description="The Message", IsRequired=true, Name="the_message") public the_message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'smsEnvoiTheMessage'; } public getMethod() { return 'GET'; } public createResponse() { return new Object(); } }