63 lines
1.7 KiB
Java
63 lines
1.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class E {
|
|
|
|
@SerializedName("dataSource")
|
|
private final String b;
|
|
|
|
@SerializedName("insAcctId")
|
|
private final String c;
|
|
|
|
@SerializedName("transactionToken")
|
|
private final String d;
|
|
|
|
@SerializedName("payType")
|
|
private final String e;
|
|
|
|
public E(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
this.d = str;
|
|
this.c = str2;
|
|
this.b = str3;
|
|
this.e = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.c;
|
|
String str3 = this.b;
|
|
String str4 = this.e;
|
|
StringBuilder sb = new StringBuilder("InsurancePaymentConfirmRequest(transactionToken=");
|
|
sb.append(str);
|
|
sb.append(", insAcctId=");
|
|
sb.append(str2);
|
|
sb.append(", dataSource=");
|
|
sb.append(str3);
|
|
sb.append(", payType=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((this.d.hashCode() * 31) + this.c.hashCode()) * 31) + this.b.hashCode()) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof E)) {
|
|
return false;
|
|
}
|
|
E e = (E) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) e.d) && C14957gcv.b((Object) this.c, (Object) e.c) && C14957gcv.b((Object) this.b, (Object) e.b) && C14957gcv.b((Object) this.e, (Object) e.e);
|
|
}
|
|
}
|