""" Options: Date: 2026-03-13 22:05:59 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: mandrillTheMessage.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Route("/mandrill_the_message/{the_message}", "GET") # @Api(Description="Service d'envoi d'un mail transactionnel via Mandrill") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class mandrillTheMessage(IReturn[Object]): """ Service d'envoi d'un mail transactionnel via Mandrill """ # @ApiMember(Description="The Message", IsRequired=true, Name="the_message") the_message: Optional[str] = None """ The Message """