/* Options: Date: 2026-03-13 22:08:44 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://milliet.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: smsEnvoiTheMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * 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") class smsEnvoiTheMessage implements IReturn, IConvertible, IGet { /** * The Message */ // @ApiMember(Description="The Message", IsRequired=true, Name="the_message") String? the_message; smsEnvoiTheMessage({this.the_message}); smsEnvoiTheMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { the_message = json['the_message']; return this; } Map toJson() => { 'the_message': the_message }; createResponse() => dynamic(); getResponseTypeName() => "dynamic"; getTypeName() => "smsEnvoiTheMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'milliet.io', types: { 'smsEnvoiTheMessage': TypeInfo(TypeOf.Class, create:() => smsEnvoiTheMessage()), });