what-the-bank/sources/o/iTC.java

49 lines
1.3 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class iTC {
public final Integer b;
public final String c;
public final String d;
public iTC(String str, Integer num, String str2) {
this.c = str;
this.b = num;
this.d = str2;
}
public final String toString() {
String str = this.c;
Integer num = this.b;
String str2 = this.d;
StringBuilder sb = new StringBuilder("SkuInfo(skuId=");
sb.append(str);
sb.append(", quantity=");
sb.append(num);
sb.append(", transactionId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
Integer num = this.b;
int hashCode2 = num == null ? 0 : num.hashCode();
String str2 = this.d;
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof iTC)) {
return false;
}
iTC itc = (iTC) obj;
return C14957gcv.b((Object) this.c, (Object) itc.c) && C14957gcv.b(this.b, itc.b) && C14957gcv.b((Object) this.d, (Object) itc.d);
}
}