FirebaseFunctions Framework Reference

FIRHTTPSCallableResult


@interface FIRHTTPSCallableResult : NSObject

A HTTPSCallableResult contains the result of calling a HTTPSCallable.

  • The data that was returned from the Callable HTTPS trigger. The data is in the form of native objects. For example, if your trigger returned an array, this object would be an Array. If your trigger returned a JavaScript object with keys and values, this object would be an instance of [String: Any].

    Declaration

    Objective-C

    @property (nonatomic, readonly) id _Nonnull data;
  • Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)init SWIFT_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");