47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class HVQ {
|
|
private final String a;
|
|
public final String c;
|
|
public final String d;
|
|
|
|
public HVQ(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.a = str;
|
|
this.d = str2;
|
|
this.c = str3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
String str3 = this.c;
|
|
StringBuilder sb = new StringBuilder("PurchasePaymentDetails(payType=");
|
|
sb.append(str);
|
|
sb.append(", accountNo=");
|
|
sb.append(str2);
|
|
sb.append(", name=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.a.hashCode() * 31) + this.d.hashCode()) * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HVQ)) {
|
|
return false;
|
|
}
|
|
HVQ hvq = (HVQ) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) hvq.a) && C14957gcv.b((Object) this.d, (Object) hvq.d) && C14957gcv.b((Object) this.c, (Object) hvq.c);
|
|
}
|
|
}
|