70 lines
2.2 KiB
Java
70 lines
2.2 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class cAV {
|
|
public final String a;
|
|
public final Double b;
|
|
public final String c;
|
|
public final String d;
|
|
public final String e;
|
|
public final String j;
|
|
|
|
public cAV(Double d, String str, String str2, String str3, String str4, String str5) {
|
|
this.b = d;
|
|
this.a = str;
|
|
this.d = str2;
|
|
this.c = str3;
|
|
this.e = str4;
|
|
this.j = str5;
|
|
}
|
|
|
|
public final String toString() {
|
|
Double d = this.b;
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
String str3 = this.c;
|
|
String str4 = this.e;
|
|
String str5 = this.j;
|
|
StringBuilder sb = new StringBuilder("BillPayment(paymentAmount=");
|
|
sb.append(d);
|
|
sb.append(", accountTo=");
|
|
sb.append(str);
|
|
sb.append(", accountFrom=");
|
|
sb.append(str2);
|
|
sb.append(", ref1=");
|
|
sb.append(str3);
|
|
sb.append(", ref2=");
|
|
sb.append(str4);
|
|
sb.append(", ref3=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Double d = this.b;
|
|
int hashCode = d == null ? 0 : d.hashCode();
|
|
String str = this.a;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.d;
|
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.c;
|
|
int hashCode4 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.e;
|
|
int hashCode5 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.j;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str5 != null ? str5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof cAV)) {
|
|
return false;
|
|
}
|
|
cAV cav = (cAV) obj;
|
|
return C14957gcv.b(this.b, cav.b) && C14957gcv.b((Object) this.a, (Object) cav.a) && C14957gcv.b((Object) this.d, (Object) cav.d) && C14957gcv.b((Object) this.c, (Object) cav.c) && C14957gcv.b((Object) this.e, (Object) cav.e) && C14957gcv.b((Object) this.j, (Object) cav.j);
|
|
}
|
|
}
|