You've already forked Task-Master-2.0
mirror of
https://github.com/MrLyallCSIT/Task-Master-2.0.git
synced 2026-01-18 07:09:38 +00:00
Task Master 1.0 Code Pull
This commit is contained in:
44
Task Master/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h
generated
Executable file
44
Task Master/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h
generated
Executable file
@@ -0,0 +1,44 @@
|
||||
/** @file FIRUserInfo.h
|
||||
@brief Firebase Auth SDK
|
||||
@copyright Copyright 2015 Google Inc.
|
||||
@remarks Use of this SDK is subject to the Google APIs Terms of Service:
|
||||
https://developers.google.com/terms/
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
/**
|
||||
@brief Represents user data returned from an identity provider.
|
||||
*/
|
||||
@protocol FIRUserInfo <NSObject>
|
||||
|
||||
/** @property providerID
|
||||
@brief The provider identifier.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly) NSString *providerID;
|
||||
|
||||
/** @property uid
|
||||
@brief The provider's user ID for the user.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly) NSString *uid;
|
||||
|
||||
/** @property displayName
|
||||
@brief The name of the user.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly, nullable) NSString *displayName;
|
||||
|
||||
/** @property photoURL
|
||||
@brief The URL of the user's profile photo.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly, nullable) NSURL *photoURL;
|
||||
|
||||
/** @property email
|
||||
@brief The user's email address.
|
||||
*/
|
||||
@property(nonatomic, copy, readonly, nullable) NSString *email;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user