43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class QrS {
|
|
|
|
@SerializedName("pointEligibility")
|
|
private final Boolean b;
|
|
|
|
@SerializedName("skuInfo")
|
|
public final nae d;
|
|
|
|
public final String toString() {
|
|
Boolean bool = this.b;
|
|
nae naeVar = this.d;
|
|
StringBuilder sb = new StringBuilder("PointRedemptionEntity(pointEligibility=");
|
|
sb.append(bool);
|
|
sb.append(", skuInfo=");
|
|
sb.append(naeVar);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Boolean bool = this.b;
|
|
int hashCode = bool == null ? 0 : bool.hashCode();
|
|
nae naeVar = this.d;
|
|
return (hashCode * 31) + (naeVar != null ? naeVar.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof QrS)) {
|
|
return false;
|
|
}
|
|
QrS qrS = (QrS) obj;
|
|
return C14957gcv.b(this.b, qrS.b) && C14957gcv.b(this.d, qrS.d);
|
|
}
|
|
}
|