35 lines
825 B
Java
35 lines
825 B
Java
package o;
|
|
|
|
import com.google.gson.JsonArray;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class IH {
|
|
|
|
@SerializedName("consent")
|
|
public JsonArray e;
|
|
|
|
public final String toString() {
|
|
JsonArray jsonArray = this.e;
|
|
StringBuilder sb = new StringBuilder("ConsentDataSubmitted(consent=");
|
|
sb.append(jsonArray);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
JsonArray jsonArray = this.e;
|
|
if (jsonArray == null) {
|
|
return 0;
|
|
}
|
|
return jsonArray.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof IH) && C14957gcv.b(this.e, ((IH) obj).e);
|
|
}
|
|
}
|