Request

data class Request(    val text: String,     val playServiceId: String? = null,     val token: String? = null,     val source: String? = null,     val referrerDialogRequestId: String? = null,     val includeDialogAttribute: Boolean = true)

Parameters

text

the input text which to send request.

playServiceId

the playServiceId for request

token

: the token for request

source

: the source for request

referrerDialogRequestId

the referrerDialogRequestId for request

includeDialogAttribute

the flag to include or not dialog's attribute

Constructors

Link copied to clipboard
fun Request(    text: String,     playServiceId: String? = null,     token: String? = null,     source: String? = null,     referrerDialogRequestId: String? = null,     includeDialogAttribute: Boolean = true)

Types

Link copied to clipboard
class Builder(text: String)

Properties

Link copied to clipboard
val includeDialogAttribute: Boolean = true
Link copied to clipboard
val playServiceId: String? = null
Link copied to clipboard
val referrerDialogRequestId: String? = null
Link copied to clipboard
val source: String? = null
Link copied to clipboard
val text: String
Link copied to clipboard
val token: String? = null