98 lines
2.8 KiB
Java
98 lines
2.8 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import com.huawei.hms.support.feature.result.CommonConstant;
|
|
import io.beid.beidk.definitions.BeIDParams;
|
|
import org.threeten.bp.OffsetDateTime;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class WNM {
|
|
|
|
@SerializedName("remark")
|
|
public final String a;
|
|
|
|
@SerializedName("transactionDateTime")
|
|
public final OffsetDateTime b;
|
|
|
|
@SerializedName("additionalInfo")
|
|
public final RVV c;
|
|
|
|
@SerializedName(BeIDParams.BEID_TRANSACTION_ID)
|
|
public final String d;
|
|
|
|
public WNM(String str, OffsetDateTime offsetDateTime, RVV rvv, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(rvv, "");
|
|
C14957gcv.e(str2, "");
|
|
this.d = str;
|
|
this.b = offsetDateTime;
|
|
this.c = rvv;
|
|
this.a = str2;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class RVV {
|
|
|
|
@SerializedName(CommonConstant.KEY_STATUS)
|
|
public final kkY c;
|
|
|
|
public RVV(kkY kky) {
|
|
C14957gcv.e(kky, "");
|
|
this.c = kky;
|
|
}
|
|
|
|
public final String toString() {
|
|
kkY kky = this.c;
|
|
StringBuilder sb = new StringBuilder("AdditionalInfo(status=");
|
|
sb.append(kky);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof RVV) && C14957gcv.b(this.c, ((RVV) obj).c);
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
OffsetDateTime offsetDateTime = this.b;
|
|
RVV rvv = this.c;
|
|
String str2 = this.a;
|
|
StringBuilder sb = new StringBuilder("PrepaidActivationOtpConfirm(transactionId=");
|
|
sb.append(str);
|
|
sb.append(", transactionDateTime=");
|
|
sb.append(offsetDateTime);
|
|
sb.append(", additionalInfo=");
|
|
sb.append(rvv);
|
|
sb.append(", remark=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.d.hashCode();
|
|
OffsetDateTime offsetDateTime = this.b;
|
|
return (((((hashCode * 31) + (offsetDateTime == null ? 0 : offsetDateTime.hashCode())) * 31) + this.c.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof WNM)) {
|
|
return false;
|
|
}
|
|
WNM wnm = (WNM) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) wnm.d) && C14957gcv.b(this.b, wnm.b) && C14957gcv.b(this.c, wnm.c) && C14957gcv.b((Object) this.a, (Object) wnm.a);
|
|
}
|
|
}
|