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

48 lines
1.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class UDO {
@SerializedName("confirmationStatus")
private final String b;
@SerializedName("refId")
private final String c;
@SerializedName("confirmDateTime")
private final String e;
public final String toString() {
String str = this.e;
String str2 = this.c;
String str3 = this.b;
StringBuilder sb = new StringBuilder("LoanConfirmationEntity(confirmDateTime=");
sb.append(str);
sb.append(", refId=");
sb.append(str2);
sb.append(", confirmationStatus=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
String str = this.c;
return (((hashCode * 31) + (str == null ? 0 : str.hashCode())) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UDO)) {
return false;
}
UDO udo = (UDO) obj;
return C14957gcv.b((Object) this.e, (Object) udo.e) && C14957gcv.b((Object) this.c, (Object) udo.c) && C14957gcv.b((Object) this.b, (Object) udo.b);
}
}