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

57 lines
1.5 KiB
Java
Raw Permalink 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 SLQ {
@SerializedName("applicationUuid")
private final String a;
@SerializedName("disburseTnCFlag")
private final String b;
@SerializedName("advertisingId")
private final String c;
public SLQ(String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = str;
this.b = str2;
this.c = str3;
}
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.c;
StringBuilder sb = new StringBuilder("HmlOtpConfirmationRequest(applicationUuid=");
sb.append(str);
sb.append(", disburseTnCFlag=");
sb.append(str2);
sb.append(", advertisingId=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.b.hashCode();
String str = this.c;
return (((hashCode * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof SLQ)) {
return false;
}
SLQ slq = (SLQ) obj;
return C14957gcv.b((Object) this.a, (Object) slq.a) && C14957gcv.b((Object) this.b, (Object) slq.b) && C14957gcv.b((Object) this.c, (Object) slq.c);
}
}