76 lines
2.3 KiB
Java
76 lines
2.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Xkr {
|
|
|
|
@SerializedName("transactionDateTime")
|
|
public final String a;
|
|
|
|
@SerializedName("paymentId")
|
|
public final String b;
|
|
|
|
@SerializedName("merchantMetaData")
|
|
public final Kpz c;
|
|
|
|
@SerializedName("remainingBalance")
|
|
public final Double d;
|
|
|
|
@SerializedName("buttons")
|
|
public final List<OBW> e;
|
|
|
|
@SerializedName("transactionToken")
|
|
public final String i;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
String str3 = this.i;
|
|
List<OBW> list = this.e;
|
|
Double d = this.d;
|
|
Kpz kpz = this.c;
|
|
StringBuilder sb = new StringBuilder("InsurancePaymentConfirmationEntity(transactionDateTime=");
|
|
sb.append(str);
|
|
sb.append(", paymentId=");
|
|
sb.append(str2);
|
|
sb.append(", transactionToken=");
|
|
sb.append(str3);
|
|
sb.append(", buttons=");
|
|
sb.append(list);
|
|
sb.append(", remainingBalance=");
|
|
sb.append(d);
|
|
sb.append(", merchantMetaData=");
|
|
sb.append(kpz);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.i;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
List<OBW> list = this.e;
|
|
int hashCode4 = list == null ? 0 : list.hashCode();
|
|
Double d = this.d;
|
|
int hashCode5 = d == null ? 0 : d.hashCode();
|
|
Kpz kpz = this.c;
|
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (kpz != null ? kpz.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Xkr)) {
|
|
return false;
|
|
}
|
|
Xkr xkr = (Xkr) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) xkr.a) && C14957gcv.b((Object) this.b, (Object) xkr.b) && C14957gcv.b((Object) this.i, (Object) xkr.i) && C14957gcv.b(this.e, xkr.e) && C14957gcv.b(this.d, xkr.d) && C14957gcv.b(this.c, xkr.c);
|
|
}
|
|
}
|