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

47 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class MGu {
@SerializedName("name")
public final String a;
@SerializedName("accountNumber")
public final String b;
@SerializedName("logo")
public final String d;
public final String toString() {
String str = this.d;
String str2 = this.a;
String str3 = this.b;
StringBuilder sb = new StringBuilder("AccountFromEntity(logo=");
sb.append(str);
sb.append(", name=");
sb.append(str2);
sb.append(", accountNumber=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
return ((((str == null ? 0 : str.hashCode()) * 31) + this.a.hashCode()) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MGu)) {
return false;
}
MGu mGu = (MGu) obj;
return C14957gcv.b((Object) this.d, (Object) mGu.d) && C14957gcv.b((Object) this.a, (Object) mGu.a) && C14957gcv.b((Object) this.b, (Object) mGu.b);
}
}