AacsReplyMessage

data class AacsReplyMessage(val replyToId: String, val id: String, val topic: String, val action: String, val payload: String) : AacsMessage

Class representing an AACS reply message. A reply is the response to a previously received message.

The specification of the generic reply message is available on the Alexa Auto AASB specification documentation page.

See also

AACSReplyMessage

.

Constructors

Link copied to clipboard
constructor(replyToId: String, id: String, topic: String, action: String, payload: String)

Properties

Link copied to clipboard
open override val action: String

The action value of the request as described in the AASB documentation.

Link copied to clipboard
open override val id: String

The ID of the message. This allows the client to identify the reply to this request from Alexa, if this request results in a reply.

Link copied to clipboard
open override val payload: String

The message payload in JSON format.

Link copied to clipboard

The ID of the message that this is a reply to.

Link copied to clipboard
open override val topic: String

The topic of the request as described in the AASB documentation.

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)