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

85 lines
2.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import org.simpleframework.xml.strategy.Name;
/* loaded from: classes3.dex */
public final class xLZ {
@SerializedName(Name.MARK)
public final String a;
@SerializedName("code")
public final String b;
@SerializedName("name")
public final String c;
@SerializedName("referenceOrder")
public final String d;
@SerializedName("terminal")
public final String e;
@SerializedName("urlLogo")
public final String h;
public xLZ(String str, String str2, String str3, String str4, String str5, String str6) {
this.a = str;
this.c = str2;
this.b = str3;
this.e = str4;
this.h = str5;
this.d = str6;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
String str3 = this.b;
String str4 = this.e;
String str5 = this.h;
String str6 = this.d;
StringBuilder sb = new StringBuilder("MerchantInfo(id=");
sb.append(str);
sb.append(", name=");
sb.append(str2);
sb.append(", code=");
sb.append(str3);
sb.append(", terminal=");
sb.append(str4);
sb.append(", urlLogo=");
sb.append(str5);
sb.append(", referenceOrder=");
sb.append(str6);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.c;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.b;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.e;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.h;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
String str6 = this.d;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str6 != null ? str6.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof xLZ)) {
return false;
}
xLZ xlz = (xLZ) obj;
return C14957gcv.b((Object) this.a, (Object) xlz.a) && C14957gcv.b((Object) this.c, (Object) xlz.c) && C14957gcv.b((Object) this.b, (Object) xlz.b) && C14957gcv.b((Object) this.e, (Object) xlz.e) && C14957gcv.b((Object) this.h, (Object) xlz.h) && C14957gcv.b((Object) this.d, (Object) xlz.d);
}
}