MessageRequest

class MessageRequest(    val message: String?,     val attachment: Attachment?,     val conversationId: String,     val isRequireAcknowledgement: Boolean,     val isFromNfc: Boolean,     val attachmentCallback: AttachmentCallback?,     val callback: CompletionCallback?,     val progressChanged: (attachmentId: Int, progress: Int, total: Int) -> Unit?)

Constructors

Link copied to clipboard
fun MessageRequest(    message: String?,     attachment: Attachment?,     conversationId: String,     isRequireAcknowledgement: Boolean,     isFromNfc: Boolean,     attachmentCallback: AttachmentCallback?,     callback: CompletionCallback?,     progressChanged: (attachmentId: Int, progress: Int, total: Int) -> Unit?)

Types

Link copied to clipboard
class Builder

Properties

Link copied to clipboard
val attachment: Attachment?
Link copied to clipboard
val attachmentCallback: AttachmentCallback?
Link copied to clipboard
val callback: CompletionCallback?
Link copied to clipboard
val conversationId: String
Link copied to clipboard
val isFromNfc: Boolean
Link copied to clipboard
val isRequireAcknowledgement: Boolean
Link copied to clipboard
val message: String?
Link copied to clipboard
val progressChanged: (attachmentId: Int, progress: Int, total: Int) -> Unit?