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 ZHW {
|
||
|
|
||
|
@SerializedName("taxId")
|
||
|
private final String a;
|
||
|
|
||
|
@SerializedName("accountNo")
|
||
|
private final String c;
|
||
|
|
||
|
public ZHW(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.a = str;
|
||
|
this.c = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("JuristicResetPinRequest(taxId=");
|
||
|
sb.append(str);
|
||
|
sb.append(", accountNo=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.a.hashCode() * 31) + this.c.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof ZHW)) {
|
||
|
return false;
|
||
|
}
|
||
|
ZHW zhw = (ZHW) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) zhw.a) && C14957gcv.b((Object) this.c, (Object) zhw.c);
|
||
|
}
|
||
|
}
|