63 lines
1.7 KiB
Java
63 lines
1.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class XMt {
|
|
|
|
@SerializedName("tilesVersion")
|
|
private final String a;
|
|
|
|
@SerializedName("objectiveId")
|
|
private final String b;
|
|
|
|
@SerializedName("accountType")
|
|
private final String c;
|
|
|
|
@SerializedName("productCode")
|
|
private final String e;
|
|
|
|
public XMt(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
this.c = str;
|
|
this.e = str2;
|
|
this.b = str3;
|
|
this.a = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.a;
|
|
StringBuilder sb = new StringBuilder("EtbEligibilityValidationsRequest(accountType=");
|
|
sb.append(str);
|
|
sb.append(", productCode=");
|
|
sb.append(str2);
|
|
sb.append(", objectiveId=");
|
|
sb.append(str3);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((this.c.hashCode() * 31) + this.e.hashCode()) * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof XMt)) {
|
|
return false;
|
|
}
|
|
XMt xMt = (XMt) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) xMt.c) && C14957gcv.b((Object) this.e, (Object) xMt.e) && C14957gcv.b((Object) this.b, (Object) xMt.b) && C14957gcv.b((Object) this.a, (Object) xMt.a);
|
|
}
|
|
}
|