package o; import com.google.gson.annotations.SerializedName; import com.huawei.hms.support.api.entity.common.CommonConstant; import java.util.List; /* loaded from: classes.dex */ public final class TG { @SerializedName("externalType") String a; @SerializedName(CommonConstant.ReqAccessTokenParam.SCOPE_LABEL) public List d; public final String toString() { String str = this.a; List list = this.d; StringBuilder sb = new StringBuilder("PartnerWebViewGoogleLoginRequest(externalType="); sb.append(str); sb.append(", scope="); sb.append(list); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.a; int hashCode = str == null ? 0 : str.hashCode(); List list = this.d; return (hashCode * 31) + (list != null ? list.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof TG)) { return false; } TG tg = (TG) obj; return C14957gcv.b((Object) this.a, (Object) tg.a) && C14957gcv.b(this.d, tg.d); } }