what-the-bank/sources/o/iHG.java

46 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class iHG {
@SerializedName("brand")
public final String a;
@SerializedName("modelId")
public final String c;
@SerializedName("model")
public final String e;
public final String toString() {
String str = this.a;
String str2 = this.e;
String str3 = this.c;
StringBuilder sb = new StringBuilder("DeviceModelEntity(brand=");
sb.append(str);
sb.append(", model=");
sb.append(str2);
sb.append(", modelId=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.a.hashCode() * 31) + this.e.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof iHG)) {
return false;
}
iHG ihg = (iHG) obj;
return C14957gcv.b((Object) this.a, (Object) ihg.a) && C14957gcv.b((Object) this.e, (Object) ihg.e) && C14957gcv.b((Object) this.c, (Object) ihg.c);
}
}