Added in API level 33

CommandResponse

class CommandResponse : BroadcastInfoResponse, Parcelable
kotlin.Any
   ↳ android.media.tv.BroadcastInfoResponse
   ↳ android.media.tv.CommandResponse

A response for command from broadcast signal.

Summary

Constants
static String

static String

Inherited constants
Public constructors
CommandResponse(requestId: Int, sequence: Int, responseResult: Int, response: String?, responseType: String)

Public methods
Int

String?

Gets the response of the command.

String

Gets the type of the command response.

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Inherited functions
Properties
static Parcelable.Creator<CommandResponse!>

Constants

RESPONSE_TYPE_JSON

Added in API level 33
static val RESPONSE_TYPE_JSON: String
Value: "json"

RESPONSE_TYPE_XML

Added in API level 33
static val RESPONSE_TYPE_XML: String
Value: "xml"

Public constructors

CommandResponse

Added in API level 33
CommandResponse(
    requestId: Int,
    sequence: Int,
    responseResult: Int,
    response: String?,
    responseType: String)
Parameters
responseResult Int: Value is android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_ERROR, android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_OK, or android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_CANCEL
response String?: This value may be null.
responseType String: This value cannot be null.

Public methods

describeContents

Added in API level 33
fun describeContents(): Int
Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

getResponse

Added in API level 33
fun getResponse(): String?

Gets the response of the command. It could be serialized from some formats, such as JSON, XML, etc.

Return
String? This value may be null.

getResponseType

Added in API level 33
fun getResponseType(): String

Gets the type of the command response. It could be either JSON or XML.

Return
String This value cannot be null.

writeToParcel

Added in API level 33
fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest Parcel: This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 33
static val CREATOR: Parcelable.Creator<CommandResponse!>