1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
-
-
- #import <Foundation/Foundation.h>
-
- #import "FIRAuthRPCResponse.h"
-
- NS_ASSUME_NONNULL_BEGIN
-
- @interface FIRSignUpNewUserResponse : NSObject<FIRAuthRPCResponse>
-
-
- @property(nonatomic, strong, readonly, nullable) NSString *IDToken;
-
-
- @property(nonatomic, copy, readonly, nullable) NSDate *approximateExpirationDate;
-
-
- @property(nonatomic, strong, readonly, nullable) NSString *refreshToken;
-
- @end
-
- NS_ASSUME_NONNULL_END
|