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

60 lines
1.6 KiB
Java

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