HttpsCallableResult

public final class HttpsCallableResult


The result of calling a HttpsCallableReference function.

Summary

Public fields

final Object

The data that was returned from the Callable HTTPS trigger.

Public methods

final Object

Returns the data that was returned from the Callable HTTPS trigger.

Public fields

data

public final Object data

The data that was returned from the Callable HTTPS trigger.

The data is in the form of native Java objects. For example, if your trigger returned an array, this object would be a List<Object>. If your trigger returned a JavaScript object with keys and values, this object would be a Map<String, Object>.

Public methods

getData

public final Object getData()

Returns the data that was returned from the Callable HTTPS trigger.

The data is in the form of native Java objects. For example, if your trigger returned an array, this object would be a List<Object>. If your trigger returned a JavaScript object with keys and values, this object would be a Map<String, Object>.