what-the-bank/sources/o/HVS.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 HVS {
@SerializedName("acceptanceFlag")
private final String a;
@SerializedName("applicationUuid")
private final String c;
@SerializedName("offerId")
private final String d;
public HVS(String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.c = str;
this.a = str2;
this.d = str3;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
String str3 = this.d;
StringBuilder sb = new StringBuilder("UpdateOfferAcceptanceRequest(applicationUuid=");
sb.append(str);
sb.append(", acceptanceFlag=");
sb.append(str2);
sb.append(", offerId=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
int hashCode2 = this.a.hashCode();
String str = this.d;
return (((hashCode * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HVS)) {
return false;
}
HVS hvs = (HVS) obj;
return C14957gcv.b((Object) this.c, (Object) hvs.c) && C14957gcv.b((Object) this.a, (Object) hvs.a) && C14957gcv.b((Object) this.d, (Object) hvs.d);
}
}