@@ -23,49 +23,49 @@ NS_ASSUME_NONNULL_BEGIN
23
23
@interface FIRSignInWithGameCenterResponse : NSObject <FIRAuthRPCResponse>
24
24
25
25
/* * @property IDToken
26
- @breif Either an authorization code suitable for performing an STS token exchange, or the access
26
+ @brief Either an authorization code suitable for performing an STS token exchange, or the access
27
27
token from Secure Token Service, depending on whether @c returnSecureToken is set on the
28
28
request.
29
29
*/
30
30
@property (nonatomic , copy , readonly , nullable ) NSString *IDToken;
31
31
32
32
/* * @property refreshToken
33
- @breif @breif The refresh token from Secure Token Service.
33
+ @brief The refresh token from Secure Token Service.
34
34
*/
35
35
@property (nonatomic , copy , readonly , nullable ) NSString *refreshToken;
36
36
37
37
/* * @property localID
38
- @breif @breif The Firebase Auth user ID.
38
+ @brief The Firebase Auth user ID.
39
39
*/
40
40
@property (nonatomic , copy , readonly , nullable ) NSString *localID;
41
41
42
42
/* * @property playerID
43
- @breif @breif The verified player ID.
43
+ @brief The verified player ID.
44
44
*/
45
45
@property (nonatomic , copy , readonly , nullable ) NSString *playerID;
46
46
47
47
/* * @property teamPlayerID
48
- @breif @breif The verified team player ID.
48
+ @brief The verified team player ID.
49
49
*/
50
50
@property (nonatomic , copy , readonly , nullable ) NSString *teamPlayerID;
51
51
52
52
/* * @property gamePlayerID
53
- @breif @breif The verified game player ID.
53
+ @brief The verified game player ID.
54
54
*/
55
55
@property (nonatomic , copy , readonly , nullable ) NSString *gamePlayerID;
56
56
57
57
/* * @property approximateExpirationDate
58
- @breif The approximate expiration date of the access token.
58
+ @brief The approximate expiration date of the access token.
59
59
*/
60
60
@property (nonatomic , copy , readonly , nullable ) NSDate *approximateExpirationDate;
61
61
62
62
/* * @property isNewUser
63
- @breif Flag indicating that the user signing in is a new user and not a returning user.
63
+ @brief Flag indicating that the user signing in is a new user and not a returning user.
64
64
*/
65
65
@property (nonatomic , assign ) BOOL isNewUser;
66
66
67
67
/* * @property displayName
68
- @breif The user's Game Center display name.
68
+ @brief The user's Game Center display name.
69
69
*/
70
70
@property (nonatomic , copy , readonly , nullable ) NSString *displayName;
71
71
0 commit comments