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

51 lines
1.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public final class TqF {
@SerializedName("creditCardCategories")
public String c;
@SerializedName("iso20022MaxWaitingTime")
public Integer e;
public TqF(String str, Integer num) {
this.c = str;
this.e = num;
}
public /* synthetic */ TqF() {
}
public final String toString() {
String str = this.c;
Integer num = this.e;
StringBuilder sb = new StringBuilder("AppConfigBillPayment(creditCardCategories=");
sb.append(str);
sb.append(", iso20022MaxWaitingTime=");
sb.append(num);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
Integer num = this.e;
return (hashCode * 31) + (num != null ? num.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof TqF)) {
return false;
}
TqF tqF = (TqF) obj;
return C14957gcv.b((Object) this.c, (Object) tqF.c) && C14957gcv.b(this.e, tqF.e);
}
}