51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Ncb {
|
|
|
|
@SerializedName("id_token")
|
|
public final String a;
|
|
|
|
@SerializedName("access_token")
|
|
public final String c;
|
|
|
|
@SerializedName("refresh_token")
|
|
public final String d;
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.a;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("GoogleSigninTokenResponseEntity(accessToken=");
|
|
sb.append(str);
|
|
sb.append(", idToken=");
|
|
sb.append(str2);
|
|
sb.append(", refreshToken=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.a;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Ncb)) {
|
|
return false;
|
|
}
|
|
Ncb ncb = (Ncb) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) ncb.c) && C14957gcv.b((Object) this.a, (Object) ncb.a) && C14957gcv.b((Object) this.d, (Object) ncb.d);
|
|
}
|
|
}
|