40 lines
1009 B
Java
40 lines
1009 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Ape {
|
|
|
|
@SerializedName("qrcode")
|
|
public final String a;
|
|
|
|
@SerializedName("generateDate")
|
|
public final String d;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
StringBuilder sb = new StringBuilder("BillPaymentBillersQrGenerateEntity(qrcode=");
|
|
sb.append(str);
|
|
sb.append(", generateDate=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.a.hashCode() * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Ape)) {
|
|
return false;
|
|
}
|
|
Ape ape = (Ape) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) ape.a) && C14957gcv.b((Object) this.d, (Object) ape.d);
|
|
}
|
|
}
|