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

57 lines
1.5 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class YpA {
@SerializedName("acceptanceFlag")
public final String a;
@SerializedName("applicationUuid")
public final String b;
@SerializedName("offerId")
public final String c;
public YpA(String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.b = str;
this.a = str2;
this.c = str3;
}
public final String toString() {
String str = this.b;
String str2 = this.a;
String str3 = this.c;
StringBuilder sb = new StringBuilder("OfferAcceptance(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.b.hashCode();
int hashCode2 = this.a.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 YpA)) {
return false;
}
YpA ypA = (YpA) obj;
return C14957gcv.b((Object) this.b, (Object) ypA.b) && C14957gcv.b((Object) this.a, (Object) ypA.a) && C14957gcv.b((Object) this.c, (Object) ypA.c);
}
}