/* Options: Date: 2026-03-13 22:08:45 SwiftVersion: 6.0 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: smsEnvoiTheMessage.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * 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") public class smsEnvoiTheMessage : IReturn, Codable { public typealias Return = String /** * The Message */ // @ApiMember(Description="The Message", IsRequired=true, Name="the_message") public var the_message:String? required public init(){} }