34 lines
751 B
Java
34 lines
751 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class GX {
|
|
|
|
@SerializedName("isSuccess")
|
|
public Boolean c;
|
|
|
|
public final String toString() {
|
|
Boolean bool = this.c;
|
|
StringBuilder sb = new StringBuilder("Payload(isSuccess=");
|
|
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 GX) && C14957gcv.b(this.c, ((GX) obj).c);
|
|
}
|
|
}
|