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

67 lines
1.9 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.ai, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C2621ai {
@SerializedName("from")
private final String a;
@SerializedName("to")
private final String b;
@SerializedName("tilesVersion")
private final String c;
@SerializedName("termFundFlag")
private final String d;
public C2621ai(String str, String str2, String str3, String str4) {
C14957gcv.e(str, "");
this.c = str;
this.a = str2;
this.b = str3;
this.d = str4;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
String str3 = this.b;
String str4 = this.d;
StringBuilder sb = new StringBuilder("TermFundRequest(tilesVersion=");
sb.append(str);
sb.append(", from=");
sb.append(str2);
sb.append(", to=");
sb.append(str3);
sb.append(", termFundFlag=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.d;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C2621ai)) {
return false;
}
C2621ai c2621ai = (C2621ai) obj;
return C14957gcv.b((Object) this.c, (Object) c2621ai.c) && C14957gcv.b((Object) this.a, (Object) c2621ai.a) && C14957gcv.b((Object) this.b, (Object) c2621ai.b) && C14957gcv.b((Object) this.d, (Object) c2621ai.d);
}
}