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

34 lines
781 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class SSK {
@SerializedName("enableThune")
private final Boolean c;
public final String toString() {
Boolean bool = this.c;
StringBuilder sb = new StringBuilder("RemittanceToggleEntity(enableThune=");
sb.append(bool);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Boolean bool = this.c;
if (bool == null) {
return 0;
}
return bool.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof SSK) && C14957gcv.b(this.c, ((SSK) obj).c);
}
}