package o; import com.google.gson.annotations.SerializedName; import java.util.Objects; /* loaded from: classes.dex */ public class ggV { @SerializedName("groupCode") public String a; @SerializedName("return") private String b; @SerializedName("message") public String c; @SerializedName("header") public String d; @SerializedName("code") public String e; public static ggV d() { return new ggV(); } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof ggV)) { return false; } ggV ggv = (ggV) obj; return Objects.equals(this.d, ggv.d) && Objects.equals(this.c, ggv.c) && Objects.equals(this.e, ggv.e) && Objects.equals(this.a, ggv.a) && Objects.equals(this.b, ggv.b); } public int hashCode() { return Objects.hash(this.d, this.c, this.e, this.a, this.b); } }