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

64 lines
1.8 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class SNU {
@SerializedName("description")
public final String a;
@SerializedName("repaymentStartDate")
public final FAf b;
@SerializedName("options")
public final List<C12858fJb> c;
@SerializedName("defaultOption")
public final String d;
@SerializedName("code")
public final String e;
public final String toString() {
String str = this.e;
String str2 = this.a;
String str3 = this.d;
List<C12858fJb> list = this.c;
FAf fAf = this.b;
StringBuilder sb = new StringBuilder("HmlInstallmentFrequencyEntity(code=");
sb.append(str);
sb.append(", description=");
sb.append(str2);
sb.append(", defaultOption=");
sb.append(str3);
sb.append(", options=");
sb.append(list);
sb.append(", repaymentStartDate=");
sb.append(fAf);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
int hashCode2 = this.a.hashCode();
int hashCode3 = this.d.hashCode();
int hashCode4 = this.c.hashCode();
FAf fAf = this.b;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (fAf == null ? 0 : fAf.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof SNU)) {
return false;
}
SNU snu = (SNU) obj;
return C14957gcv.b((Object) this.e, (Object) snu.e) && C14957gcv.b((Object) this.a, (Object) snu.a) && C14957gcv.b((Object) this.d, (Object) snu.d) && C14957gcv.b(this.c, snu.c) && C14957gcv.b(this.b, snu.b);
}
}