34 lines
774 B
Java
34 lines
774 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class BWs {
|
|
|
|
@SerializedName("promptpay")
|
|
public final Boolean a;
|
|
|
|
public final String toString() {
|
|
Boolean bool = this.a;
|
|
StringBuilder sb = new StringBuilder("TransferToggleEntity(promptpay=");
|
|
sb.append(bool);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Boolean bool = this.a;
|
|
if (bool == null) {
|
|
return 0;
|
|
}
|
|
return bool.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof BWs) && C14957gcv.b(this.a, ((BWs) obj).a);
|
|
}
|
|
}
|