diff options
author | 2024-11-06 16:57:40 +0000 | |
---|---|---|
committer | 2024-11-07 10:29:48 +0000 | |
commit | 08c469d59be6c9e83cd0d2b9a98740e902cf6032 (patch) | |
tree | 8b27e8f748897089d37583520c5b4951b708e2f5 /libs/appfunctions/java | |
parent | 95f5091d51a955726e3b18b6ff48f6cf87782bfd (diff) |
API Council feedback
Flag: android.app.appfunctions.flags.enable_app_function_manager
Test: CTS
Bug: 376890974
Change-Id: Idc835c2af581a0f60a2c64d2ffafbbb1a353356a
Diffstat (limited to 'libs/appfunctions/java')
2 files changed, 3 insertions, 3 deletions
diff --git a/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionRequest.java b/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionRequest.java index 593c5213dd52..9cf4c6a9b3c5 100644 --- a/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionRequest.java +++ b/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionRequest.java @@ -91,8 +91,8 @@ public final class ExecuteAppFunctionRequest { * Returns the function parameters. The key is the parameter name, and the value is the * parameter value. * - * <p>The bundle may have missing parameters. Developers are advised to implement defensive - * handling measures. + * <p>The {@link GenericDocument} may have missing parameters. Developers are advised to + * implement defensive handling measures. * * <p>Similar to {@link #getFunctionIdentifier()} the parameters required by a function can be * obtained by querying AppSearch for the corresponding {@code AppFunctionStaticMetadata}. This diff --git a/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionResponse.java b/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionResponse.java index 4e88fb025a9d..c806a0780551 100644 --- a/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionResponse.java +++ b/libs/appfunctions/java/com/google/android/appfunctions/sidecar/ExecuteAppFunctionResponse.java @@ -48,7 +48,7 @@ public final class ExecuteAppFunctionResponse { * * <p>See {@link #getResultDocument} for more information on extracting the return value. */ - public static final String PROPERTY_RETURN_VALUE = "returnValue"; + public static final String PROPERTY_RETURN_VALUE = "android_app_appfunctions_returnvalue"; /** * The call was successful. |