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

54 lines
1.1 KiB
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 class lga {
@SerializedName("productType")
private String d;
@SerializedName("tilesVersion")
public String e;
/* loaded from: classes3.dex */
public static final class LWm {
public String c;
}
private lga(LWm lWm) {
this.d = lWm.c;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
String str = this.d;
String str2 = ((lga) obj).d;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
String str = this.d;
if (str != null) {
return str.hashCode();
}
return 0;
}
public String toString() {
StringBuilder sb = new StringBuilder("ReferralVerificationRequest{productType='");
sb.append(this.d);
sb.append("'}");
return sb.toString();
}
public /* synthetic */ lga(LWm lWm, byte b) {
this(lWm);
}
}