55 lines
1.2 KiB
Java
55 lines
1.2 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Weo {
|
||
|
|
||
|
@SerializedName("creditLife")
|
||
|
public String b;
|
||
|
|
||
|
@SerializedName("car")
|
||
|
public String e;
|
||
|
|
||
|
public /* synthetic */ Weo(byte b) {
|
||
|
this("", "");
|
||
|
}
|
||
|
|
||
|
private Weo(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.e = str;
|
||
|
this.b = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.e;
|
||
|
String str2 = this.b;
|
||
|
StringBuilder sb = new StringBuilder("CarInsuranceRequest(car=");
|
||
|
sb.append(str);
|
||
|
sb.append(", creditLife=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.e.hashCode() * 31) + this.b.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Weo)) {
|
||
|
return false;
|
||
|
}
|
||
|
Weo weo = (Weo) obj;
|
||
|
return C14957gcv.b((Object) this.e, (Object) weo.e) && C14957gcv.b((Object) this.b, (Object) weo.b);
|
||
|
}
|
||
|
|
||
|
public Weo() {
|
||
|
this((byte) 0);
|
||
|
}
|
||
|
}
|