36 lines
857 B
Java
36 lines
857 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.db, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C8979db {
|
|
|
|
@SerializedName("cardRefNo")
|
|
private final String c;
|
|
|
|
public C8979db(String str) {
|
|
C14957gcv.e(str, "");
|
|
this.c = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
StringBuilder sb = new StringBuilder("PrepaidCard(cardRefNo=");
|
|
sb.append(str);
|
|
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 C8979db) && C14957gcv.b((Object) this.c, (Object) ((C8979db) obj).c);
|
|
}
|
|
}
|