/* Options: Date: 2026-03-13 22:06:33 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: smsEnvoiTheMessage.* //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 { /** * Service d'envoi d'un sms transactionnel via SMS Envoi */ @Route(Path="/smsenvoi_the_message/{the_message}", Verbs="GET") @Api(Description="Service d'envoi d'un sms transactionnel via SMS Envoi") public static class smsEnvoiTheMessage implements IReturn { /** * The Message */ @ApiMember(Description="The Message", IsRequired=true, Name="the_message") public String the_message = null; public String getTheMessage() { return the_message; } public smsEnvoiTheMessage setTheMessage(String value) { this.the_message = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } }