58 lines
1.8 KiB
Java
58 lines
1.8 KiB
Java
|
package o;
|
||
|
|
||
|
import java.util.Objects;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Tht {
|
||
|
public String a;
|
||
|
public String b;
|
||
|
public String c;
|
||
|
public String d;
|
||
|
public String e;
|
||
|
public String f;
|
||
|
public String g;
|
||
|
public String h;
|
||
|
public String i;
|
||
|
public String j;
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder("TileHistory{accountFrom='");
|
||
|
sb.append(this.e);
|
||
|
sb.append("', accountTo='");
|
||
|
sb.append(this.a);
|
||
|
sb.append("', referenceNo1='");
|
||
|
sb.append(this.i);
|
||
|
sb.append("', referenceNo2='");
|
||
|
sb.append(this.g);
|
||
|
sb.append("', amount='");
|
||
|
sb.append(this.d);
|
||
|
sb.append("', payBy='");
|
||
|
sb.append(this.f);
|
||
|
sb.append("', ebillSource='");
|
||
|
sb.append(this.c);
|
||
|
sb.append("', depAcctIdFrom='");
|
||
|
sb.append(this.b);
|
||
|
sb.append("', serviceNumber='");
|
||
|
sb.append(this.j);
|
||
|
sb.append("', pmtAmt='");
|
||
|
sb.append(this.h);
|
||
|
sb.append("'}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
Tht tht = (Tht) obj;
|
||
|
return Objects.equals(this.e, tht.e) && Objects.equals(this.a, tht.a) && Objects.equals(this.i, tht.i) && Objects.equals(this.g, tht.g) && Objects.equals(this.d, tht.d) && Objects.equals(this.f, tht.f) && Objects.equals(this.c, tht.c) && Objects.equals(this.b, tht.b) && Objects.equals(this.j, tht.j) && Objects.equals(this.h, tht.h);
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return Objects.hash(this.e, this.a, this.i, this.g, this.d, this.f, this.c, this.b, this.j, this.h);
|
||
|
}
|
||
|
}
|