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

43 lines
1.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class PXR {
@SerializedName("pointEligibility")
public final Boolean d;
@SerializedName("skuInfo")
public final lge e;
public final String toString() {
Boolean bool = this.d;
lge lgeVar = this.e;
StringBuilder sb = new StringBuilder("PointRedemptionEntity(pointEligibility=");
sb.append(bool);
sb.append(", skuInfo=");
sb.append(lgeVar);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Boolean bool = this.d;
int hashCode = bool == null ? 0 : bool.hashCode();
lge lgeVar = this.e;
return (hashCode * 31) + (lgeVar != null ? lgeVar.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof PXR)) {
return false;
}
PXR pxr = (PXR) obj;
return C14957gcv.b(this.d, pxr.d) && C14957gcv.b(this.e, pxr.e);
}
}