""" Options: Date: 2024-06-26 09:08:56 Version: 8.23 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://testapi.bokamera.se #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: TestSendNewsLetter.* #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 class ICompany: company_id: Optional[str] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class NewsletterLogQueryResponse: # @ApiMember(Description="The message log id") id: int = 0 """ The message log id """ # @ApiMember(Description="The message receiver. Either a email or a mobile phone number.") receiver: Optional[str] = None """ The message receiver. Either a email or a mobile phone number. """ # @ApiMember(Description="Nessage Title.") message_title: Optional[str] = None """ Nessage Title. """ # @ApiMember(Description="Nessage Body.") message_body: Optional[str] = None """ Nessage Body. """ # @ApiMember(Description="When message was created.") created: datetime.datetime = datetime.datetime(1, 1, 1) """ When message was created. """ # @ApiMember(Description="When the message will be sent.") to_send_date: datetime.datetime = datetime.datetime(1, 1, 1) """ When the message will be sent. """ # @ApiMember(Description="When the message was sent.") sent_date: Optional[datetime.datetime] = None """ When the message was sent. """ # @ApiMember(Description="If Message is sent") sent: bool = False """ If Message is sent """ # @ApiMember(Description="Number of retries to send the message") message_retries: int = 0 """ Number of retries to send the message """ # @ApiMember(Description="Send Method. 1 = Email, 2 = SMS") send_method_id: int = 0 """ Send Method. 1 = Email, 2 = SMS """ # @Route("/newsletter/templates/test", "POST") # @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) # @ValidateRequest(Validator="IsAuthenticated") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class TestSendNewsLetter(IReturn[NewsletterLogQueryResponse], ICompany): # @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") company_id: Optional[str] = None """ The company id, if empty will use the company id for the user you are logged in with. """ # @ApiMember(Description="The email recepient to receive the newsletter. For templates with send method SMS you need to enter a valid mobile phone number and send method Email a valid Email must be provided.", IsRequired=true) receiver: Optional[str] = None """ The email recepient to receive the newsletter. For templates with send method SMS you need to enter a valid mobile phone number and send method Email a valid Email must be provided. """ # @ApiMember(Description="The newsletter template id.", IsRequired=true) id: int = 0 """ The newsletter template id. """