40 lines
1.0 KiB
Java
40 lines
1.0 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Gbc {
|
||
|
|
||
|
@SerializedName("mobileNo")
|
||
|
public final String a;
|
||
|
|
||
|
@SerializedName("verificationStage")
|
||
|
public final String c;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
String str2 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("HmlPromptPayVerificationStageEntity(verificationStage=");
|
||
|
sb.append(str);
|
||
|
sb.append(", mobileNo=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.c.hashCode() * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Gbc)) {
|
||
|
return false;
|
||
|
}
|
||
|
Gbc gbc = (Gbc) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) gbc.c) && C14957gcv.b((Object) this.a, (Object) gbc.a);
|
||
|
}
|
||
|
}
|