43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ZeL {
|
|
|
|
@SerializedName("ISO20022_MAX_WAITING_TIME")
|
|
public final Integer a;
|
|
|
|
@SerializedName("creditCardCategories")
|
|
public final String c;
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
Integer num = this.a;
|
|
StringBuilder sb = new StringBuilder("AppConfigBillPaymentEntity(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.a;
|
|
return (hashCode * 31) + (num != null ? num.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ZeL)) {
|
|
return false;
|
|
}
|
|
ZeL zeL = (ZeL) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) zeL.c) && C14957gcv.b(this.a, zeL.a);
|
|
}
|
|
}
|