47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Qmm {
|
|
|
|
@SerializedName("customerOccupationInfo")
|
|
private final rQr c;
|
|
|
|
@SerializedName("applicationUuid")
|
|
private final String d;
|
|
|
|
public Qmm(String str, rQr rqr) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(rqr, "");
|
|
this.d = str;
|
|
this.c = rqr;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
rQr rqr = this.c;
|
|
StringBuilder sb = new StringBuilder("CustomerOccupationInfoRequest(applicationUuid=");
|
|
sb.append(str);
|
|
sb.append(", customerOccupationInfo=");
|
|
sb.append(rqr);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.d.hashCode() * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Qmm)) {
|
|
return false;
|
|
}
|
|
Qmm qmm = (Qmm) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) qmm.d) && C14957gcv.b(this.c, qmm.c);
|
|
}
|
|
}
|