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

70 lines
2.3 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class TyG {
public final String a;
public final String b;
public final String c;
public final String d;
public final String e;
public final String g;
public TyG(String str, String str2, String str3, String str4, String str5, String str6) {
this.g = str;
this.a = str2;
this.e = str3;
this.d = str4;
this.c = str5;
this.b = str6;
}
public final String toString() {
String str = this.g;
String str2 = this.a;
String str3 = this.e;
String str4 = this.d;
String str5 = this.c;
String str6 = this.b;
StringBuilder sb = new StringBuilder("PaymentInfo(type=");
sb.append(str);
sb.append(", title=");
sb.append(str2);
sb.append(", description=");
sb.append(str3);
sb.append(", header=");
sb.append(str4);
sb.append(", imageURL=");
sb.append(str5);
sb.append(", qrString=");
sb.append(str6);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.g;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.a;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.d;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.c;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
String str6 = this.b;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str6 != null ? str6.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof TyG)) {
return false;
}
TyG tyG = (TyG) obj;
return C14957gcv.b((Object) this.g, (Object) tyG.g) && C14957gcv.b((Object) this.a, (Object) tyG.a) && C14957gcv.b((Object) this.e, (Object) tyG.e) && C14957gcv.b((Object) this.d, (Object) tyG.d) && C14957gcv.b((Object) this.c, (Object) tyG.c) && C14957gcv.b((Object) this.b, (Object) tyG.b);
}
}