104 lines
3.0 KiB
Java
104 lines
3.0 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import com.airbnb.deeplinkdispatch.UrlTreeKt;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class LF extends EQ implements Parcelable {
|
||
|
public static final Parcelable.Creator<LF> CREATOR = new Parcelable.Creator<LF>() { // from class: o.LF.5
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ LF createFromParcel(Parcel parcel) {
|
||
|
return new LF(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ LF[] newArray(int i) {
|
||
|
return new LF[i];
|
||
|
}
|
||
|
};
|
||
|
public String a;
|
||
|
public List<Integer> b;
|
||
|
public String d;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class HBt {
|
||
|
public String a;
|
||
|
public List<Integer> b;
|
||
|
public String e;
|
||
|
}
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
private LF(HBt hBt) {
|
||
|
this.a = hBt.e;
|
||
|
this.d = hBt.a;
|
||
|
this.b = hBt.b;
|
||
|
}
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.a);
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeList(this.b);
|
||
|
}
|
||
|
|
||
|
protected LF(Parcel parcel) {
|
||
|
this.a = parcel.readString();
|
||
|
this.d = parcel.readString();
|
||
|
ArrayList arrayList = new ArrayList();
|
||
|
this.b = arrayList;
|
||
|
parcel.readList(arrayList, Integer.class.getClassLoader());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
LF lf = (LF) obj;
|
||
|
String str = this.a;
|
||
|
if (str == null ? lf.a != null : !str.equals(lf.a)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.d;
|
||
|
if (str2 == null ? lf.d != null : !str2.equals(lf.d)) {
|
||
|
return false;
|
||
|
}
|
||
|
List<Integer> list = this.b;
|
||
|
List<Integer> list2 = lf.b;
|
||
|
return list != null ? list.equals(list2) : list2 == null;
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.a;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.d;
|
||
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
||
|
List<Integer> list = this.b;
|
||
|
return (((hashCode * 31) + hashCode2) * 31) + (list != null ? list.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("EasycashRepaymentOptionsDisplay{minimumAmount='");
|
||
|
sb.append(this.a);
|
||
|
sb.append("', maximumAmount='");
|
||
|
sb.append(this.d);
|
||
|
sb.append("', availableDurations=");
|
||
|
sb.append(this.b);
|
||
|
sb.append(UrlTreeKt.componentParamSuffixChar);
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ LF(HBt hBt, byte b) {
|
||
|
this(hBt);
|
||
|
}
|
||
|
}
|