88 lines
2.8 KiB
Java
88 lines
2.8 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Bpe {
|
|
|
|
@SerializedName("accountNumber")
|
|
public final String a;
|
|
|
|
@SerializedName("logo")
|
|
public final String b;
|
|
|
|
@SerializedName("accountNumberMask")
|
|
public final String c;
|
|
|
|
@SerializedName("countryName")
|
|
public final String d;
|
|
|
|
@SerializedName("accountDetails")
|
|
public final String e;
|
|
|
|
@SerializedName("swiftCode")
|
|
public final String f;
|
|
|
|
@SerializedName("name")
|
|
public final String i;
|
|
|
|
@SerializedName("receivingBank")
|
|
public final String j;
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.i;
|
|
String str3 = this.a;
|
|
String str4 = this.c;
|
|
String str5 = this.e;
|
|
String str6 = this.j;
|
|
String str7 = this.f;
|
|
String str8 = this.d;
|
|
StringBuilder sb = new StringBuilder("AccountToEntity(logo=");
|
|
sb.append(str);
|
|
sb.append(", name=");
|
|
sb.append(str2);
|
|
sb.append(", accountNumber=");
|
|
sb.append(str3);
|
|
sb.append(", accountNumberMask=");
|
|
sb.append(str4);
|
|
sb.append(", accountDetails=");
|
|
sb.append(str5);
|
|
sb.append(", receivingBank=");
|
|
sb.append(str6);
|
|
sb.append(", swiftCode=");
|
|
sb.append(str7);
|
|
sb.append(", countryName=");
|
|
sb.append(str8);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.b;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
int hashCode2 = this.i.hashCode();
|
|
int hashCode3 = this.a.hashCode();
|
|
String str2 = this.c;
|
|
int hashCode4 = str2 == null ? 0 : str2.hashCode();
|
|
int hashCode5 = this.e.hashCode();
|
|
String str3 = this.j;
|
|
int hashCode6 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.f;
|
|
int hashCode7 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.d;
|
|
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str5 != null ? str5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Bpe)) {
|
|
return false;
|
|
}
|
|
Bpe bpe = (Bpe) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) bpe.b) && C14957gcv.b((Object) this.i, (Object) bpe.i) && C14957gcv.b((Object) this.a, (Object) bpe.a) && C14957gcv.b((Object) this.c, (Object) bpe.c) && C14957gcv.b((Object) this.e, (Object) bpe.e) && C14957gcv.b((Object) this.j, (Object) bpe.j) && C14957gcv.b((Object) this.f, (Object) bpe.f) && C14957gcv.b((Object) this.d, (Object) bpe.d);
|
|
}
|
|
}
|