ExecuteAppFunctionRequest


class ExecuteAppFunctionRequest


Represents a request to execute a specific app function.

Summary

Public constructors

ExecuteAppFunctionRequest(
    targetPackageName: String,
    functionIdentifier: String,
    functionParameters: AppFunctionData
)

Public functions

open String

Public properties

String

The unique string identifier of the app function to be executed.

AppFunctionData

The parameters required to invoke this function.

String

The package name of the app that hosts the function.

Public constructors

ExecuteAppFunctionRequest

Added in 1.0.0-alpha01
ExecuteAppFunctionRequest(
    targetPackageName: String,
    functionIdentifier: String,
    functionParameters: AppFunctionData
)

Public functions

toString

open fun toString(): String

Public properties

functionIdentifier

Added in 1.0.0-alpha01
val functionIdentifierString

The unique string identifier of the app function to be executed.

functionParameters

Added in 1.0.0-alpha01
val functionParametersAppFunctionData

The parameters required to invoke this function. Within this AppFunctionData, the property names are the names of the function parameters and the property values are the values of those parameters. The data object may have missing parameters. Developers are advised to implement defensive handling measures.

targetPackageName

Added in 1.0.0-alpha01
val targetPackageNameString

The package name of the app that hosts the function.