51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Hro {
|
||
|
|
||
|
@SerializedName("enableCC")
|
||
|
public final Boolean a;
|
||
|
|
||
|
@SerializedName("enableCC_webview")
|
||
|
public final Boolean d;
|
||
|
|
||
|
@SerializedName("enableSPCM_webview")
|
||
|
public final Boolean e;
|
||
|
|
||
|
public final String toString() {
|
||
|
Boolean bool = this.a;
|
||
|
Boolean bool2 = this.d;
|
||
|
Boolean bool3 = this.e;
|
||
|
StringBuilder sb = new StringBuilder("ScbOneCardXToggleEntity(enableCC=");
|
||
|
sb.append(bool);
|
||
|
sb.append(", enableCcWebview=");
|
||
|
sb.append(bool2);
|
||
|
sb.append(", enableSpcMWebview=");
|
||
|
sb.append(bool3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
Boolean bool = this.a;
|
||
|
int hashCode = bool == null ? 0 : bool.hashCode();
|
||
|
Boolean bool2 = this.d;
|
||
|
int hashCode2 = bool2 == null ? 0 : bool2.hashCode();
|
||
|
Boolean bool3 = this.e;
|
||
|
return (((hashCode * 31) + hashCode2) * 31) + (bool3 != null ? bool3.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Hro)) {
|
||
|
return false;
|
||
|
}
|
||
|
Hro hro = (Hro) obj;
|
||
|
return C14957gcv.b(this.a, hro.a) && C14957gcv.b(this.d, hro.d) && C14957gcv.b(this.e, hro.e);
|
||
|
}
|
||
|
}
|