what-the-bank/sources/o/GTL.java

49 lines
1.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class GTL extends Esm {
@SerializedName("documentId")
private final String b;
@SerializedName("applicationId")
private final String d;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public GTL(String str, String str2) {
super((byte) 0);
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.d = str;
this.b = str2;
}
public final String toString() {
String str = this.d;
String str2 = this.b;
StringBuilder sb = new StringBuilder("EasycashDeleteAdditionDocumentRequest(applicationId=");
sb.append(str);
sb.append(", documentId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.d.hashCode() * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GTL)) {
return false;
}
GTL gtl = (GTL) obj;
return C14957gcv.b((Object) this.d, (Object) gtl.d) && C14957gcv.b((Object) this.b, (Object) gtl.b);
}
}