ExecuteAppFunctionRequest
class ExecuteAppFunctionRequest
Represents a request to execute a specific app function.
Summary
Public constructors |
---|
ExecuteAppFunctionRequest( |
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
ExecuteAppFunctionRequest(
targetPackageName: String,
functionIdentifier: String,
functionParameters: AppFunctionData
)
Public properties
functionIdentifier
val functionIdentifier: String
The unique string identifier of the app function to be executed.
functionParameters
val functionParameters: AppFunctionData
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
val targetPackageName: String
The package name of the app that hosts the function.