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

76 lines
2.4 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class SEe extends C16562pOe {
@SerializedName("buttons")
public final List<OBW> a;
@SerializedName("paymentId")
public final String b;
@SerializedName("remainingPoint")
public final String c;
@SerializedName("merchantMetaData")
public final C15758iOf d;
@SerializedName("remainingBalance")
public final String e;
@SerializedName("transactionDateTime")
public final String i;
public final String toString() {
String str = this.b;
String str2 = this.i;
String str3 = this.e;
String str4 = this.c;
C15758iOf c15758iOf = this.d;
List<OBW> list = this.a;
StringBuilder sb = new StringBuilder("PurchasePaymentConfirmationDataEntity(paymentId=");
sb.append(str);
sb.append(", transactionDateTime=");
sb.append(str2);
sb.append(", remainingBalance=");
sb.append(str3);
sb.append(", remainingPoint=");
sb.append(str4);
sb.append(", merchantMetaData=");
sb.append(c15758iOf);
sb.append(", buttons=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.b;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.i;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.c;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
C15758iOf c15758iOf = this.d;
int hashCode5 = c15758iOf == null ? 0 : c15758iOf.hashCode();
List<OBW> list = this.a;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof SEe)) {
return false;
}
SEe sEe = (SEe) obj;
return C14957gcv.b((Object) this.b, (Object) sEe.b) && C14957gcv.b((Object) this.i, (Object) sEe.i) && C14957gcv.b((Object) this.e, (Object) sEe.e) && C14957gcv.b((Object) this.c, (Object) sEe.c) && C14957gcv.b(this.d, sEe.d) && C14957gcv.b(this.a, sEe.a);
}
}