what-the-bank/sources/com/google/firebase/auth/GetTokenResult.java

31 lines
655 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}