FIRFunctions
@interface FIRFunctions : NSObjectFunctions is the client for Cloud Functions for a Firebase project.
- 
                  
                  Creates a Cloud Functions client using the default or returns a pre-existing instance if it already exists. returns: A shared Functions instance initialized with the default FirebaseApp.DeclarationObjective-C + (FIRFunctions *_Nonnull)functions;
- 
                  
                  Creates a Cloud Functions client with the given app, or returns a pre-existing instance if one already exists. \param app The app for the Firebase project. returns: A shared Functions instance initialized with the specified FirebaseApp.DeclarationObjective-C + (FIRFunctions *_Nonnull)functionsForApp:(FIRApp *_Nonnull)app;
- 
                  
                  Creates a Cloud Functions client with the default app and given region. \param region The region for the HTTP trigger, such as us-central1.returns: A shared Functions instance initialized with the default FirebaseAppand a custom region.DeclarationObjective-C + (FIRFunctions *_Nonnull)functionsForRegion:(NSString *_Nonnull)region;
- 
                  
                  Creates a Cloud Functions client with the given app and region, or returns a pre-existing instance if one already exists. \param customDomain A custom domain for the HTTP trigger, such as "https //mydomain.com". returns: A shared Functions instance initialized with the default FirebaseAppand a custom HTTP trigger domain.DeclarationObjective-C + (FIRFunctions *_Nonnull)functionsForCustomDomain: (NSString *_Nonnull)customDomain;
- 
                  
                  Creates a Cloud Functions client with the given app and region, or returns a pre-existing instance if one already exists. \param app The app for the Firebase project. \param region The region for the HTTP trigger, such as us-central1.returns: An instance of Functionswith a custom app and region.DeclarationObjective-C + (FIRFunctions *_Nonnull)functionsForApp:(FIRApp *_Nonnull)app region:(NSString *_Nonnull)region;
- 
                  
                  Creates a Cloud Functions client with the given app and region, or returns a pre-existing instance if one already exists. \param app The app for the Firebase project. \param customDomain A custom domain for the HTTP trigger, such as https://mydomain.com.returns: An instance of Functionswith a custom app and HTTP trigger domain.DeclarationObjective-C + (FIRFunctions *_Nonnull)functionsForApp:(FIRApp *_Nonnull)app customDomain:(NSString *_Nonnull)customDomain;
- 
                  
                  Creates a reference to the Callable HTTPS trigger with the given name. \param name The name of the Callable HTTPS trigger. DeclarationObjective-C - (FIRHTTPSCallable *_Nonnull)HTTPSCallableWithName:(NSString *_Nonnull)name;
- 
                  
                  Undocumented DeclarationObjective-C - (FIRHTTPSCallable * _Nonnull)HTTPSCallableWithURL:(NSURL * _Nonnull)url SWIFT_WARN_UNUSED_RESULT;
- 
                  
                  Changes this instance to point to a Cloud Functions emulator running locally. See https://firebase.google.com/docs/functions/local-emulator \param host The host of the local emulator, such as "localhost". \param port The port of the local emulator, for example 5005. DeclarationObjective-C - (void)useEmulatorWithHost:(NSString *_Nonnull)host port:(NSInteger)port;
- 
                  
                  Undocumented DeclarationObjective-C - (nonnull instancetype)init SWIFT_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");