(* Options: Date: 2025-05-04 22:52:12 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: NewFlowMessage.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Flows open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Struct() = inherit Dictionary() [] type Value() = member val BoolValue:Nullable = new Nullable() with get,set member val StringValue:String = null with get,set member val NumberValue:Nullable = new Nullable() with get,set member val ListValue:ResizeArray = null with get,set member val StructValue:Struct = null with get,set [] [] type NewFlowMessage() = interface IReturnVoid /// ///The ID of the endpoint that received the message /// [] member val EndpointId:String = null with get,set /// ///The session values /// [] member val SessionParameters:Struct = null with get,set /// ///The from address /// [] member val FromAddress:String = null with get,set /// ///The to address /// [] member val ToAddress:String = null with get,set /// ///The identity of the sender /// [] member val Identity:String = null with get,set /// ///The display name of the sender (will default to identity if not specified /// [] member val DisplayName:String = null with get,set /// ///The URL to call when replies need to be sent back /// [] member val MessageUrl:String = null with get,set