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

41 lines
1.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class tlc {
public final String a;
public final String e;
public tlc(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = str;
this.e = str2;
}
public final String toString() {
String str = this.a;
String str2 = this.e;
StringBuilder sb = new StringBuilder("PurchasePaymentConfirmationButtons(label=");
sb.append(str);
sb.append(", deepLink=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.a.hashCode() * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof tlc)) {
return false;
}
tlc tlcVar = (tlc) obj;
return C14957gcv.b((Object) this.a, (Object) tlcVar.a) && C14957gcv.b((Object) this.e, (Object) tlcVar.e);
}
}