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

53 lines
1.5 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class MO {
public final String a;
public final String b;
public final String c;
public final String d;
public MO(String str, String str2, String str3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.c = str;
this.a = str2;
this.d = str3;
this.b = str4;
}
public final String toString() {
String str = this.c;
String str2 = this.a;
String str3 = this.d;
String str4 = this.b;
StringBuilder sb = new StringBuilder("FriendsLandingDisplay(imagePath=");
sb.append(str);
sb.append(", referCode=");
sb.append(str2);
sb.append(", tncUrl=");
sb.append(str3);
sb.append(", sharedText=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((this.c.hashCode() * 31) + this.a.hashCode()) * 31) + this.d.hashCode()) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MO)) {
return false;
}
MO mo = (MO) obj;
return C14957gcv.b((Object) this.c, (Object) mo.c) && C14957gcv.b((Object) this.a, (Object) mo.a) && C14957gcv.b((Object) this.d, (Object) mo.d) && C14957gcv.b((Object) this.b, (Object) mo.b);
}
}