60 lines
1.8 KiB
Java
60 lines
1.8 KiB
Java
package o;
|
|
|
|
import com.google.android.gms.measurement.api.AppMeasurementSdk;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ONI {
|
|
|
|
@SerializedName("key")
|
|
public final String a;
|
|
|
|
@SerializedName("label")
|
|
public final String b;
|
|
|
|
@SerializedName("sortSequence")
|
|
public final Integer c;
|
|
|
|
@SerializedName(AppMeasurementSdk.ConditionalUserProperty.VALUE)
|
|
public final String d;
|
|
|
|
public final String toString() {
|
|
Integer num = this.c;
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("AutoDetailsEntity(sortSequence=");
|
|
sb.append(num);
|
|
sb.append(", key=");
|
|
sb.append(str);
|
|
sb.append(", label=");
|
|
sb.append(str2);
|
|
sb.append(", value=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Integer num = this.c;
|
|
int hashCode = num == null ? 0 : num.hashCode();
|
|
String str = this.a;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.b;
|
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ONI)) {
|
|
return false;
|
|
}
|
|
ONI oni = (ONI) obj;
|
|
return C14957gcv.b(this.c, oni.c) && C14957gcv.b((Object) this.a, (Object) oni.a) && C14957gcv.b((Object) this.b, (Object) oni.b) && C14957gcv.b((Object) this.d, (Object) oni.d);
|
|
}
|
|
}
|