78 lines
2.3 KiB
Java
78 lines
2.3 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class TP implements Parcelable {
|
||
|
public static final Parcelable.Creator<TP> CREATOR = new RVV();
|
||
|
public final String a;
|
||
|
public final String c;
|
||
|
public final String d;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public TP(String str, String str2, String str3) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
this.a = str;
|
||
|
this.c = str2;
|
||
|
this.d = str3;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class RVV implements Parcelable.Creator<TP> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ TP createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new TP(parcel.readString(), parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ TP[] newArray(int i) {
|
||
|
return new TP[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.d);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("AccountFromDisplay(logo=");
|
||
|
sb.append(str);
|
||
|
sb.append(", name=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", accountNumber=");
|
||
|
sb.append(str3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((this.a.hashCode() * 31) + this.c.hashCode()) * 31) + this.d.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof TP)) {
|
||
|
return false;
|
||
|
}
|
||
|
TP tp = (TP) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) tp.a) && C14957gcv.b((Object) this.c, (Object) tp.c) && C14957gcv.b((Object) this.d, (Object) tp.d);
|
||
|
}
|
||
|
}
|