58 lines
1.9 KiB
Java
58 lines
1.9 KiB
Java
|
package o;
|
||
|
|
||
|
import java.util.Objects;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class BOc {
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public Integer c;
|
||
|
public boolean d;
|
||
|
public String e;
|
||
|
public XAP f;
|
||
|
public String g;
|
||
|
public Double h;
|
||
|
public boolean i;
|
||
|
public String j;
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("TopUpBiller{id=");
|
||
|
sb.append(this.c);
|
||
|
sb.append(", accountNumber='");
|
||
|
sb.append(this.b);
|
||
|
sb.append("', serviceType=");
|
||
|
sb.append(this.f);
|
||
|
sb.append(", limitPerDay=");
|
||
|
sb.append(this.h);
|
||
|
sb.append(", billerLogoUrl='");
|
||
|
sb.append(this.a);
|
||
|
sb.append("', referenceLabel='");
|
||
|
sb.append(this.j);
|
||
|
sb.append("', billerName='");
|
||
|
sb.append(this.e);
|
||
|
sb.append("', type='");
|
||
|
sb.append(this.g);
|
||
|
sb.append("', pointFlag='");
|
||
|
sb.append(this.i);
|
||
|
sb.append("', disableFlag='");
|
||
|
sb.append(this.d);
|
||
|
sb.append("'}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
BOc bOc = (BOc) obj;
|
||
|
return Objects.equals(this.c, bOc.c) && Objects.equals(this.b, bOc.b) && this.f == bOc.f && Objects.equals(this.h, bOc.h) && Objects.equals(this.a, bOc.a) && Objects.equals(this.j, bOc.j) && Objects.equals(this.e, bOc.e) && Objects.equals(this.g, bOc.g) && Objects.equals(Boolean.valueOf(this.i), Boolean.valueOf(bOc.i)) && Objects.equals(Boolean.valueOf(this.d), Boolean.valueOf(bOc.d));
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return Objects.hash(this.c, this.b, this.f, this.h, this.a, this.j, this.e, this.g, Boolean.valueOf(this.i), Boolean.valueOf(this.d));
|
||
|
}
|
||
|
}
|