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

34 lines
766 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class LzC {
@SerializedName("allowBillpayment")
public final boolean b;
public final String toString() {
boolean z = this.b;
StringBuilder sb = new StringBuilder("BillersMerchantValidationDataEntity(allowBillpayment=");
sb.append(z);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
boolean z = this.b;
if (z) {
return 1;
}
return z ? 1 : 0;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof LzC) && this.b == ((LzC) obj).b;
}
}