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

47 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class yQG {
@SerializedName("accountNo")
public final String a;
@SerializedName("accountName")
public final String b;
@SerializedName("ruleName")
public final List<String> c;
public final String toString() {
String str = this.a;
String str2 = this.b;
List<String> list = this.c;
StringBuilder sb = new StringBuilder("DepositListEntity(accountNo=");
sb.append(str);
sb.append(", accountName=");
sb.append(str2);
sb.append(", ruleName=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof yQG)) {
return false;
}
yQG yqg = (yQG) obj;
return C14957gcv.b((Object) this.a, (Object) yqg.a) && C14957gcv.b((Object) this.b, (Object) yqg.b) && C14957gcv.b(this.c, yqg.c);
}
}