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

45 lines
1.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.boG, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C5181boG {
@SerializedName("statementAccountList")
public final List<String> b;
@SerializedName("fee")
public final Double e;
public final String toString() {
List<String> list = this.b;
Double d = this.e;
StringBuilder sb = new StringBuilder("NdidPayFeeEntity(statementAccountList=");
sb.append(list);
sb.append(", fee=");
sb.append(d);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<String> list = this.b;
int hashCode = list == null ? 0 : list.hashCode();
Double d = this.e;
return (hashCode * 31) + (d != null ? d.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C5181boG)) {
return false;
}
C5181boG c5181boG = (C5181boG) obj;
return C14957gcv.b(this.b, c5181boG.b) && C14957gcv.b(this.e, c5181boG.e);
}
}