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

38 lines
838 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class WVW {
@SerializedName("cardRefNo")
private final String d;
public WVW(String str) {
this.d = str;
}
public final String toString() {
String str = this.d;
StringBuilder sb = new StringBuilder("CardListRequest(cardRefNo=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
if (str == null) {
return 0;
}
return str.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof WVW) && C14957gcv.b((Object) this.d, (Object) ((WVW) obj).d);
}
}