what-the-bank/sources/o/TG.java

45 lines
1.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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<String> d;
public final String toString() {
String str = this.a;
List<String> 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<String> 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);
}
}