what-the-bank/sources/o/MAF.java

30 lines
736 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class MAF {
@SerializedName("preregistrationTokenId")
public final String e;
public final String toString() {
String str = this.e;
StringBuilder sb = new StringBuilder("JuristicVerifyOtpResponseEntity(preregistrationTokenId=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof MAF) && C14957gcv.b((Object) this.e, (Object) ((MAF) obj).e);
}
}