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

48 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class iLA {
@SerializedName("disburseTnCFlag")
private final String c;
@SerializedName("applicationUuid")
private final String d;
public iLA(String str, String str2) {
C14957gcv.e(str, "");
this.d = str;
this.c = str2;
}
public final String toString() {
String str = this.d;
String str2 = this.c;
StringBuilder sb = new StringBuilder("HmlUuidRequest(applicationUuid=");
sb.append(str);
sb.append(", disburseTnCFlag=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.d.hashCode();
String str = this.c;
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof iLA)) {
return false;
}
iLA ila = (iLA) obj;
return C14957gcv.b((Object) this.d, (Object) ila.d) && C14957gcv.b((Object) this.c, (Object) ila.c);
}
}