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

43 lines
1.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public final class IM {
@SerializedName("consentDataSubmitted")
public IH b;
@SerializedName("isSuccess")
public Boolean e;
public final String toString() {
Boolean bool = this.e;
IH ih = this.b;
StringBuilder sb = new StringBuilder("Payload(isSuccess=");
sb.append(bool);
sb.append(", consentDataSubmitted=");
sb.append(ih);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Boolean bool = this.e;
int hashCode = bool == null ? 0 : bool.hashCode();
IH ih = this.b;
return (hashCode * 31) + (ih != null ? ih.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IM)) {
return false;
}
IM im = (IM) obj;
return C14957gcv.b(this.e, im.e) && C14957gcv.b(this.b, im.b);
}
}