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

46 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class LcU {
@SerializedName("documentDesc")
private final String a;
@SerializedName("documentId")
private final String b;
@SerializedName("imageName")
private final String c;
public final String toString() {
String str = this.b;
String str2 = this.c;
String str3 = this.a;
StringBuilder sb = new StringBuilder("HmlDocumentInfoEntity(documentId=");
sb.append(str);
sb.append(", imageName=");
sb.append(str2);
sb.append(", documentDesc=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.b.hashCode() * 31) + this.c.hashCode()) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof LcU)) {
return false;
}
LcU lcU = (LcU) obj;
return C14957gcv.b((Object) this.b, (Object) lcU.b) && C14957gcv.b((Object) this.c, (Object) lcU.c) && C14957gcv.b((Object) this.a, (Object) lcU.a);
}
}