Advertisement
Guest User

Untitled

a guest
Mar 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** @file FIRAuthCredential.h
  2.     @brief Firebase Auth SDK
  3.     @copyright Copyright 2015 Google Inc.
  4.     @remarks Use of this SDK is subject to the Google APIs Terms of Service:
  5.         https://developers.google.com/terms/
  6.  */
  7.  
  8. #import <Foundation/Foundation.h>
  9.  
  10. NS_ASSUME_NONNULL_BEGIN
  11.  
  12. /** @class FIRAuthCredential
  13.     @brief Represents a credential.
  14.  */
  15. @interface FIRAuthCredential : NSObject
  16.  
  17. /** @property provider
  18.     @brief Gets the name of the identity provider for the credential.
  19.  */
  20. @property(nonatomic, copy, readonly) NSString *provider;
  21.  
  22. /** @fn init
  23.     @brief This is an abstract base class. Concrete instances should be created via factory
  24.         methods available in the various authentication provider libraries (like the Facebook
  25.         provider or the Google provider libraries.)
  26.  */
  27. - (instancetype)init NS_UNAVAILABLE;
  28.  
  29. @end
  30.  
  31. NS_ASSUME_NONNULL_END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement