aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Morgan Chen <morganchen12@gmail.com>2018-04-18 15:16:17 -0700
committerGravatar GitHub <noreply@github.com>2018-04-18 15:16:17 -0700
commit81ac1761e2195aa2f16c0377471e084910ccdb35 (patch)
tree558d6d3a224288ef2c630bffc6fc90476f605208
parent5d3c76f54397735473f13cf67a9b407244277bcc (diff)
parente6f9451de7f06dc5ff88dd921e56b368e99186b4 (diff)
Merge pull request #1136 from firebase/morganchen12-patch-1
Fix bad type annotation in claims
-rw-r--r--Firebase/Auth/Source/Public/FIRAuthTokenResult.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
index 41ba008..82a5f1e 100644
--- a/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
+++ b/Firebase/Auth/Source/Public/FIRAuthTokenResult.h
@@ -57,7 +57,7 @@ NS_SWIFT_NAME(AuthTokenResult)
@brief Stores the entire payload of claims found on the ID token. This includes the standard
reserved claims as well as custom claims set by the developer via the Admin SDK.
*/
-@property (nonatomic, readonly) NSDictionary<NSString *, NSString *> *claims;
+@property (nonatomic, readonly) NSDictionary<NSString *, id> *claims;