/* Options: Date: 2024-07-03 12:27:24 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendEmail.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class MessageLogQueryResponse { /** @description The message log id */ // @ApiMember(Description="The message log id") public Id: number; /** @description The booking id for the message (if connected to a booking). */ // @ApiMember(Description="The booking id for the message (if connected to a booking).") public BookingId?: number; /** @description The message receiver. Either a email or a mobile phone number. */ // @ApiMember(Description="The message receiver. Either a email or a mobile phone number.") public Receiver: string; /** @description Message Title. */ // @ApiMember(Description="Message Title.") public MessageTitle: string; /** @description Message Storage Url. */ // @ApiMember(Description="Message Storage Url.") public StorageUrl: string; /** @description Message Body. */ // @ApiMember(Description="Message Body.") public MessageBody: string; /** @description When message was created. */ // @ApiMember(Description="When message was created.") public Created: string; /** @description When the message will be sent. */ // @ApiMember(Description="When the message will be sent.") public ToSendDate: string; /** @description When the message was sent. */ // @ApiMember(Description="When the message was sent.") public SentDate?: string; /** @description If Message is sent */ // @ApiMember(Description="If Message is sent") public Sent: boolean; /** @description Number of retries to send the message */ // @ApiMember(Description="Number of retries to send the message") public MessageRetries: number; /** @description Send Method. 1 = Email, 2 = SMS */ // @ApiMember(Description="Send Method. 1 = Email, 2 = SMS") public SendMethodId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/messages/sendemail", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") export class SendEmail implements IReturn, ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.", ParameterType="path") public CompanyId?: string; /** @description The message receiver email. */ // @ApiMember(Description="The message receiver email.") public Receiver: string; /** @description Message Title. */ // @ApiMember(Description="Message Title.") public MessageTitle: string; /** @description Message Body. */ // @ApiMember(Description="Message Body.") public MessageBody: string; /** @description When the message will be sent. */ // @ApiMember(Description="When the message will be sent.") public ToSendDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SendEmail'; } public getMethod() { return 'POST'; } public createResponse() { return new MessageLogQueryResponse(); } }