51 lines
1.2 KiB
Java
51 lines
1.2 KiB
Java
|
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);
|
||
|
}
|
||
|
}
|