/* Options: Date: 2025-05-04 22:25:17 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: NewFlowMessage.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/flows/message") open class NewFlowMessage : IReturnVoid { /** * The ID of the endpoint that received the message */ @ApiMember(Description="The ID of the endpoint that received the message") open var endpointId:String? = null /** * The session values */ @ApiMember(Description="The session values") open var sessionParameters:Struct? = null /** * The from address */ @ApiMember(Description="The from address") open var fromAddress:String? = null /** * The to address */ @ApiMember(Description="The to address") open var toAddress:String? = null /** * The identity of the sender */ @ApiMember(Description="The identity of the sender") open var identity:String? = null /** * The display name of the sender (will default to identity if not specified */ @ApiMember(Description="The display name of the sender (will default to identity if not specified") open var displayName:String? = null /** * The URL to call when replies need to be sent back */ @ApiMember(Description="The URL to call when replies need to be sent back") open var messageUrl:String? = null } open class Struct : HashMap() { } open class Value { open var boolValue:Boolean? = null open var stringValue:String? = null open var numberValue:Double? = null open var listValue:ArrayList? = null open var structValue:Struct? = null }