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

49 lines
1.3 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class RgS extends Pag {
public final String a;
public final JGT b;
public final String d;
public RgS(String str, String str2, JGT jgt) {
C14957gcv.e(str, "");
this.a = str;
this.d = str2;
this.b = jgt;
}
public final String toString() {
String str = this.a;
String str2 = this.d;
JGT jgt = this.b;
StringBuilder sb = new StringBuilder("RedirectButton(buttonLabel=");
sb.append(str);
sb.append(", redirectUrl=");
sb.append(str2);
sb.append(", partnerRedirect=");
sb.append(jgt);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.a.hashCode();
String str = this.d;
int hashCode2 = str == null ? 0 : str.hashCode();
JGT jgt = this.b;
return (((hashCode * 31) + hashCode2) * 31) + (jgt != null ? jgt.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RgS)) {
return false;
}
RgS rgS = (RgS) obj;
return C14957gcv.b((Object) this.a, (Object) rgS.a) && C14957gcv.b((Object) this.d, (Object) rgS.d) && C14957gcv.b(this.b, rgS.b);
}
}