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

39 lines
1.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.fNv, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public class C13009fNv extends NLQ {
@SerializedName("loanDurationPeriod")
public String d;
@SerializedName("campaignCode")
public String e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
C13009fNv c13009fNv = (C13009fNv) obj;
String str = this.e;
if (str == null ? c13009fNv.e != null : !str.equals(c13009fNv.e)) {
return false;
}
String str2 = this.d;
String str3 = c13009fNv.d;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public int hashCode() {
String str = this.e;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.d;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
}