40 lines
987 B
Java
40 lines
987 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class HOD {
|
||
|
|
||
|
@SerializedName("unit")
|
||
|
public final String a;
|
||
|
|
||
|
@SerializedName("perUnit")
|
||
|
public final String b;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.b;
|
||
|
StringBuilder sb = new StringBuilder("InstallmentFrequencyEntity(unit=");
|
||
|
sb.append(str);
|
||
|
sb.append(", perUnit=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.a.hashCode() * 31) + this.b.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof HOD)) {
|
||
|
return false;
|
||
|
}
|
||
|
HOD hod = (HOD) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) hod.a) && C14957gcv.b((Object) this.b, (Object) hod.b);
|
||
|
}
|
||
|
}
|