41 lines
1014 B
Java
41 lines
1014 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Wcm {
|
|
public final String d;
|
|
public final String e;
|
|
|
|
public Wcm(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.e = str;
|
|
this.d = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
String str2 = this.d;
|
|
StringBuilder sb = new StringBuilder("DutyStampFee(rate=");
|
|
sb.append(str);
|
|
sb.append(", amount=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.e.hashCode() * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Wcm)) {
|
|
return false;
|
|
}
|
|
Wcm wcm = (Wcm) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) wcm.e) && C14957gcv.b((Object) this.d, (Object) wcm.d);
|
|
}
|
|
}
|