AttachmentMessageRequest

data class AttachmentMessageRequest(    val messageId: String,     val dialogRequestId: String,     val context: String,     val namespace: String,     val name: String,     val version: String,     val referrerDialogRequestId: String,     val seq: Int,     val isEnd: Boolean,     val parentMessageId: String,     val mediaType: String,     val byteArray: ByteArray?) : MessageRequest

Class for requesting a attachment message

Parameters

dialogRequestId

the id for request that generated by client.

messageId

the unique id for the message

context

the context for the message

name

the name of directive

namespace

the namespace of directive

version

the version

seq

the sequence

isEnd

end of message

parentMessageId

the parent message id

mediaType

the media type

byteArray

the byteArray is data

Constructors

Link copied to clipboard
fun AttachmentMessageRequest(    messageId: String,     dialogRequestId: String,     context: String,     namespace: String,     name: String,     version: String,     referrerDialogRequestId: String,     seq: Int,     isEnd: Boolean,     parentMessageId: String,     mediaType: String,     byteArray: ByteArray?)

Properties

Link copied to clipboard
val byteArray: ByteArray?
Link copied to clipboard
val context: String
Link copied to clipboard
val dialogRequestId: String
Link copied to clipboard
val isEnd: Boolean
Link copied to clipboard
val mediaType: String
Link copied to clipboard
val messageId: String
Link copied to clipboard
val name: String
Link copied to clipboard
val namespace: String
Link copied to clipboard
val parentMessageId: String
Link copied to clipboard
val referrerDialogRequestId: String
Link copied to clipboard
val seq: Int
Link copied to clipboard
val version: String