88 lines
2.5 KiB
Java
88 lines
2.5 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class GL implements Parcelable {
|
|
public static final Parcelable.Creator<GL> CREATOR = new Sts();
|
|
public String a;
|
|
public String b;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public GL(String str, String str2, String str3) {
|
|
this.a = str;
|
|
this.e = str2;
|
|
this.b = str3;
|
|
}
|
|
|
|
public /* synthetic */ GL(byte b) {
|
|
this(null, null, null);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Sts implements Parcelable.Creator<GL> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ GL createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new GL(parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ GL[] newArray(int i) {
|
|
return new GL[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.b);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
StringBuilder sb = new StringBuilder("DeejungTransferHeaderConfirmationModel(transactionDateTime=");
|
|
sb.append(str);
|
|
sb.append(", refId=");
|
|
sb.append(str2);
|
|
sb.append(", deejungTransferSuccessTitle=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof GL)) {
|
|
return false;
|
|
}
|
|
GL gl = (GL) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) gl.a) && C14957gcv.b((Object) this.e, (Object) gl.e) && C14957gcv.b((Object) this.b, (Object) gl.b);
|
|
}
|
|
|
|
public GL() {
|
|
this((byte) 0);
|
|
}
|
|
}
|