59 lines
1.4 KiB
Java
59 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class spQ {
|
|
|
|
@SerializedName("type")
|
|
public String a;
|
|
|
|
@SerializedName("image")
|
|
public String b;
|
|
|
|
@SerializedName("text")
|
|
public String d;
|
|
|
|
private spQ(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.a = str;
|
|
this.d = str2;
|
|
this.b = str3;
|
|
}
|
|
|
|
public spQ() {
|
|
this("", "", "");
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
String str3 = this.b;
|
|
StringBuilder sb = new StringBuilder("ThirdPartyFooterEntity(type=");
|
|
sb.append(str);
|
|
sb.append(", text=");
|
|
sb.append(str2);
|
|
sb.append(", image=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.a.hashCode() * 31) + this.d.hashCode()) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof spQ)) {
|
|
return false;
|
|
}
|
|
spQ spq = (spQ) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) spq.a) && C14957gcv.b((Object) this.d, (Object) spq.d) && C14957gcv.b((Object) this.b, (Object) spq.b);
|
|
}
|
|
}
|