' Options: 'Date: 2025-10-28 02:17:48 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://duengageapi.uat.scadsoftware.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: SendMailRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Net Imports System.Net.Http.Headers Imports digitaluapi.ServiceModel Namespace Global Namespace digitaluapi.ServiceModel Public Partial Class SendMailRequest ''' '''Email address of sender. If it is not set the a default address will be used. ''' Public Overridable Property FromAddress As String ''' '''List of recipient email addresses ''' Public Overridable Property Recipients As IEnumerable(Of String) ''' '''Email subject ''' Public Overridable Property Subject As String ''' '''Plain text body. Either this or HtmlBody is required ''' Public Overridable Property Body As String ''' '''Html body. Either this or Body is required ''' Public Overridable Property HtmlBody As String ''' '''Email attachments ''' Public Overridable Property Attachments As String() ''' '''Email attachments ''' Public Overridable Property AttachmentsObject As Attachment() ''' '''Attachment streams ''' Public Overridable Property AttachmentStreams As AttachmentStream() ''' '''Template substitutions ''' Public Overridable Property TemplateSubstitutions As Dictionary(Of String, String) ''' '''Template Id ''' Public Overridable Property TemplateId As String ''' '''List of BCC email addresses ''' Public Overridable Property Bcc As IEnumerable(Of String) ''' '''List of CC email addresses ''' Public Overridable Property Cc As IEnumerable(Of String) End Class End Namespace End Namespace