package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class XlB { @SerializedName("header") public final String a; @SerializedName("remark1") public final String b; @SerializedName("remark2") public final String e; private XlB(String str, String str2, byte b) { this.b = str; this.e = str2; this.a = null; } public XlB(String str, String str2) { this(str, str2, (byte) 0); } public final String toString() { String str = this.b; String str2 = this.e; String str3 = this.a; StringBuilder sb = new StringBuilder("Remarks(remark1="); sb.append(str); sb.append(", remark2="); sb.append(str2); sb.append(", header="); sb.append(str3); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.b; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.e; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.a; return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof XlB)) { return false; } XlB xlB = (XlB) obj; return C14957gcv.b((Object) this.b, (Object) xlB.b) && C14957gcv.b((Object) this.e, (Object) xlB.e) && C14957gcv.b((Object) this.a, (Object) xlB.a); } }