34 lines
734 B
Java
34 lines
734 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class IG {
|
|
|
|
@SerializedName("payload")
|
|
public IM a;
|
|
|
|
public final String toString() {
|
|
IM im = this.a;
|
|
StringBuilder sb = new StringBuilder("GeneralCSentDisplay(payload=");
|
|
sb.append(im);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
IM im = this.a;
|
|
if (im == null) {
|
|
return 0;
|
|
}
|
|
return im.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof IG) && C14957gcv.b(this.a, ((IG) obj).a);
|
|
}
|
|
}
|