85 lines
2.3 KiB
Java
85 lines
2.3 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class WY implements Parcelable {
|
||
|
public static final Sts CREATOR = new Sts(0);
|
||
|
public final String a;
|
||
|
public final String c;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public WY(String str, String str2) {
|
||
|
this.c = str;
|
||
|
this.a = str2;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
||
|
public WY(Parcel parcel) {
|
||
|
this(parcel.readString(), parcel.readString());
|
||
|
C14957gcv.e(parcel, "");
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.c);
|
||
|
parcel.writeString(this.a);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class Sts implements Parcelable.Creator<WY> {
|
||
|
private Sts() {
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ WY createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new WY(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ WY[] newArray(int i) {
|
||
|
return new WY[i];
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ Sts(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
String str2 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("TierPricingInstallmentDisplay(title=");
|
||
|
sb.append(str);
|
||
|
sb.append(", value=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.c;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.a;
|
||
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof WY)) {
|
||
|
return false;
|
||
|
}
|
||
|
WY wy = (WY) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) wy.c) && C14957gcv.b((Object) this.a, (Object) wy.a);
|
||
|
}
|
||
|
}
|