' Options: 'Date: 2025-05-04 22:36:18 'Version: 8.71 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://team.evovoice.io ' '''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: NewFlowMessage.* '''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 Voice.Api.Flows.Data Imports Voice.Api.Flows Namespace Global Namespace Voice.Api.Flows Public Partial Class NewFlowMessage Implements IReturnVoid ''' '''The ID of the endpoint that received the message ''' Public Overridable Property EndpointId As String ''' '''The session values ''' Public Overridable Property SessionParameters As Struct ''' '''The from address ''' Public Overridable Property FromAddress As String ''' '''The to address ''' Public Overridable Property ToAddress As String ''' '''The identity of the sender ''' Public Overridable Property Identity As String ''' '''The display name of the sender (will default to identity if not specified ''' Public Overridable Property DisplayName As String ''' '''The URL to call when replies need to be sent back ''' Public Overridable Property MessageUrl As String End Class End Namespace Namespace Voice.Api.Flows.Data Public Partial Class Struct Inherits Dictionary(Of String, Value) End Class Public Partial Class Value Public Overridable Property BoolValue As Boolean? Public Overridable Property StringValue As String Public Overridable Property NumberValue As Double? Public Overridable Property ListValue As List(Of Struct) Public Overridable Property StructValue As Struct End Class End Namespace End Namespace