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

65 lines
1.8 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public final class EOs extends C16562pOe {
@SerializedName("CARDX_DEEPLINK_TEMP_CARD_LOCK")
public final String a;
@SerializedName("CARDX_DEEPLINK_REQUEST_STATEMENT")
public final String b;
@SerializedName("CARDX_DEEPLINK_MANAGE_STATEMENT")
public final String e;
private /* synthetic */ EOs(byte b) {
this("", "", "");
}
private EOs(String str, String str2, String str3) {
this.a = str;
this.b = str2;
this.e = str3;
}
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.e;
StringBuilder sb = new StringBuilder("DeeplinkCardXEntity(cardxDeeplinkTempCardLock=");
sb.append(str);
sb.append(", cardxDeeplinkRequestStatement=");
sb.append(str2);
sb.append(", cardxDeeplinkManageStatement=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof EOs)) {
return false;
}
EOs eOs = (EOs) obj;
return C14957gcv.b((Object) this.a, (Object) eOs.a) && C14957gcv.b((Object) this.b, (Object) eOs.b) && C14957gcv.b((Object) this.e, (Object) eOs.e);
}
public EOs() {
this((byte) 0);
}
}