/* Options: Date: 2026-03-13 22:09:14 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: smsEnvoiTheMessage.* //ExcludeTypes: //InitializeCollections: False //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.* /** * 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") open class smsEnvoiTheMessage : IReturn { /** * The Message */ @ApiMember(Description="The Message", IsRequired=true, Name="the_message") open var the_message:String? = null companion object { private val responseType = Object::class.java } override fun getResponseType(): Any? = smsEnvoiTheMessage.responseType }