31 lines
655 B
Java
31 lines
655 B
Java
package com.google.firebase.auth;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class GetTokenResult {
|
|
private String zza;
|
|
private Map<String, Object> zzb;
|
|
|
|
public String getSignInProvider() {
|
|
Map map = (Map) this.zzb.get("firebase");
|
|
if (map != null) {
|
|
return (String) map.get("sign_in_provider");
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public String getToken() {
|
|
return this.zza;
|
|
}
|
|
|
|
public Map<String, Object> getClaims() {
|
|
return this.zzb;
|
|
}
|
|
|
|
public GetTokenResult(String str, Map<String, Object> map) {
|
|
this.zza = str;
|
|
this.zzb = map;
|
|
}
|
|
}
|