ExecuteAppFunctionResponse.Success


class ExecuteAppFunctionResponse.Success : ExecuteAppFunctionResponse


Represents a successful execution of an app function.

Summary

Constants

const String

The key name of the property that stores the function return value within result.

Public constructors

Success(returnValue: AppFunctionData)

Public properties

AppFunctionData

The return value of the executed function.

Constants

PROPERTY_RETURN_VALUE

const val PROPERTY_RETURN_VALUEString

The key name of the property that stores the function return value within result.

See AppFunctionData documentation on retrieving expected fields.

Public constructors

Success

Added in 1.0.0-alpha01
Success(returnValue: AppFunctionData)

Public properties

returnValue

Added in 1.0.0-alpha01
val returnValueAppFunctionData

The return value of the executed function. An AppFunctionData.EMPTY indicates that the function does not produce a return value.