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

52 lines
1.5 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class ARQ {
@SerializedName("applicationDateTime")
public final String a;
@SerializedName("applicationId")
public final String b;
@SerializedName("approvalEstimatedTimeDetail")
public final String c;
@SerializedName("approvalEstimatedTime")
public final String e;
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.e;
String str4 = this.c;
StringBuilder sb = new StringBuilder("HmlOtpSubmissionEntity(applicationDateTime=");
sb.append(str);
sb.append(", applicationId=");
sb.append(str2);
sb.append(", approvalEstimatedTime=");
sb.append(str3);
sb.append(", approvalEstimatedTimeDetail=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + this.e.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ARQ)) {
return false;
}
ARQ arq = (ARQ) obj;
return C14957gcv.b((Object) this.a, (Object) arq.a) && C14957gcv.b((Object) this.b, (Object) arq.b) && C14957gcv.b((Object) this.e, (Object) arq.e) && C14957gcv.b((Object) this.c, (Object) arq.c);
}
}