89 lines
3.0 KiB
Java
89 lines
3.0 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
import org.threeten.bp.OffsetDateTime;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class kVd {
|
|
public final C15758iOf a;
|
|
public final List<tlc> b;
|
|
public final OffsetDateTime c;
|
|
public final String d;
|
|
public final boolean e;
|
|
public final Double h;
|
|
public final Double i;
|
|
|
|
public /* synthetic */ kVd(String str, OffsetDateTime offsetDateTime, Double d, Double d2, C15758iOf c15758iOf, List list) {
|
|
this(str, offsetDateTime, d, null, c15758iOf, list, false);
|
|
}
|
|
|
|
public kVd(String str, OffsetDateTime offsetDateTime, Double d, Double d2, C15758iOf c15758iOf, List<tlc> list, boolean z) {
|
|
this.d = str;
|
|
this.c = offsetDateTime;
|
|
this.i = d;
|
|
this.h = d2;
|
|
this.a = c15758iOf;
|
|
this.b = list;
|
|
this.e = z;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
OffsetDateTime offsetDateTime = this.c;
|
|
Double d = this.i;
|
|
Double d2 = this.h;
|
|
C15758iOf c15758iOf = this.a;
|
|
List<tlc> list = this.b;
|
|
boolean z = this.e;
|
|
StringBuilder sb = new StringBuilder("PurchasePaymentConfirmation(paymentId=");
|
|
sb.append(str);
|
|
sb.append(", dateTime=");
|
|
sb.append(offsetDateTime);
|
|
sb.append(", remainingBalance=");
|
|
sb.append(d);
|
|
sb.append(", remainingPoint=");
|
|
sb.append(d2);
|
|
sb.append(", merchantMetaData=");
|
|
sb.append(c15758iOf);
|
|
sb.append(", buttons=");
|
|
sb.append(list);
|
|
sb.append(", isPointOrBalanceNull=");
|
|
sb.append(z);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
OffsetDateTime offsetDateTime = this.c;
|
|
int hashCode2 = offsetDateTime == null ? 0 : offsetDateTime.hashCode();
|
|
Double d = this.i;
|
|
int hashCode3 = d == null ? 0 : d.hashCode();
|
|
Double d2 = this.h;
|
|
int hashCode4 = d2 == null ? 0 : d2.hashCode();
|
|
C15758iOf c15758iOf = this.a;
|
|
int hashCode5 = c15758iOf == null ? 0 : c15758iOf.hashCode();
|
|
List<tlc> list = this.b;
|
|
int hashCode6 = list != null ? list.hashCode() : 0;
|
|
boolean z = this.e;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + i;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof kVd)) {
|
|
return false;
|
|
}
|
|
kVd kvd = (kVd) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) kvd.d) && C14957gcv.b(this.c, kvd.c) && C14957gcv.b(this.i, kvd.i) && C14957gcv.b(this.h, kvd.h) && C14957gcv.b(this.a, kvd.a) && C14957gcv.b(this.b, kvd.b) && this.e == kvd.e;
|
|
}
|
|
}
|