package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class YPm { @SerializedName("tilesVersion") private final String a; @SerializedName("isDJTRename") private final boolean b; public YPm(String str, boolean z) { C14957gcv.e(str, ""); this.a = str; this.b = z; } public final String toString() { String str = this.a; boolean z = this.b; StringBuilder sb = new StringBuilder("DeejungTransferConfirmationRequest(tilesVersion="); sb.append(str); sb.append(", isDJTRename="); sb.append(z); sb.append(")"); return sb.toString(); } /* JADX WARN: Multi-variable type inference failed */ public final int hashCode() { int hashCode = this.a.hashCode(); boolean z = this.b; int i = z; if (z != 0) { i = 1; } return (hashCode * 31) + i; } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof YPm)) { return false; } YPm yPm = (YPm) obj; return C14957gcv.b((Object) this.a, (Object) yPm.a) && this.b == yPm.b; } }