119 lines
4.0 KiB
Java
119 lines
4.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class TQ implements Parcelable {
|
|
public static final Parcelable.Creator<TQ> CREATOR = new LWm();
|
|
public final String a;
|
|
public final String b;
|
|
public final String c;
|
|
public final String d;
|
|
public final float e;
|
|
public final String f;
|
|
public final String i;
|
|
public final String j;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public TQ(String str, String str2, String str3, String str4, float f, String str5, String str6, String str7) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
C14957gcv.e(str5, "");
|
|
C14957gcv.e(str6, "");
|
|
this.d = str;
|
|
this.c = str2;
|
|
this.b = str3;
|
|
this.a = str4;
|
|
this.e = f;
|
|
this.i = str5;
|
|
this.f = str6;
|
|
this.j = str7;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<TQ> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ TQ createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new TQ(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readString(), parcel.readFloat(), parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ TQ[] newArray(int i) {
|
|
return new TQ[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.d);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.a);
|
|
parcel.writeFloat(this.e);
|
|
parcel.writeString(this.i);
|
|
parcel.writeString(this.f);
|
|
parcel.writeString(this.j);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.c;
|
|
String str3 = this.b;
|
|
String str4 = this.a;
|
|
float f = this.e;
|
|
String str5 = this.i;
|
|
String str6 = this.f;
|
|
String str7 = this.j;
|
|
StringBuilder sb = new StringBuilder("PayNowInputDisplay(countryName=");
|
|
sb.append(str);
|
|
sb.append(", channelType=");
|
|
sb.append(str2);
|
|
sb.append(", agentType=");
|
|
sb.append(str3);
|
|
sb.append(", currencyCode=");
|
|
sb.append(str4);
|
|
sb.append(", amountFrom=");
|
|
sb.append(f);
|
|
sb.append(", mobileNumber=");
|
|
sb.append(str5);
|
|
sb.append(", purpose=");
|
|
sb.append(str6);
|
|
sb.append(", note=");
|
|
sb.append(str7);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.d.hashCode();
|
|
int hashCode2 = this.c.hashCode();
|
|
int hashCode3 = this.b.hashCode();
|
|
int hashCode4 = this.a.hashCode();
|
|
int hashCode5 = Float.hashCode(this.e);
|
|
int hashCode6 = this.i.hashCode();
|
|
int hashCode7 = this.f.hashCode();
|
|
String str = this.j;
|
|
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof TQ)) {
|
|
return false;
|
|
}
|
|
TQ tq = (TQ) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) tq.d) && C14957gcv.b((Object) this.c, (Object) tq.c) && C14957gcv.b((Object) this.b, (Object) tq.b) && C14957gcv.b((Object) this.a, (Object) tq.a) && Float.compare(this.e, tq.e) == 0 && C14957gcv.b((Object) this.i, (Object) tq.i) && C14957gcv.b((Object) this.f, (Object) tq.f) && C14957gcv.b((Object) this.j, (Object) tq.j);
|
|
}
|
|
}
|