93 lines
2.7 KiB
Java
93 lines
2.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import org.bouncycastle.i18n.MessageBundle;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class lsm {
|
|
|
|
@SerializedName("imageURL")
|
|
public final String a;
|
|
|
|
@SerializedName("QRstring")
|
|
public final String b;
|
|
|
|
@SerializedName(MessageBundle.TITLE_ENTRY)
|
|
public final String c;
|
|
|
|
@SerializedName("header")
|
|
public final String d;
|
|
|
|
@SerializedName("description")
|
|
public final String e;
|
|
|
|
@SerializedName("type")
|
|
public final String g;
|
|
|
|
private /* synthetic */ lsm(byte b) {
|
|
this("", "", "", "", "", "");
|
|
}
|
|
|
|
private lsm(String str, String str2, String str3, String str4, String str5, String str6) {
|
|
this.a = str;
|
|
this.d = str2;
|
|
this.e = str3;
|
|
this.g = str4;
|
|
this.c = str5;
|
|
this.b = str6;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
String str3 = this.e;
|
|
String str4 = this.g;
|
|
String str5 = this.c;
|
|
String str6 = this.b;
|
|
StringBuilder sb = new StringBuilder("PaymentInfoItem(imageURL=");
|
|
sb.append(str);
|
|
sb.append(", header=");
|
|
sb.append(str2);
|
|
sb.append(", description=");
|
|
sb.append(str3);
|
|
sb.append(", type=");
|
|
sb.append(str4);
|
|
sb.append(", title=");
|
|
sb.append(str5);
|
|
sb.append(", qrString=");
|
|
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.d;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.e;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.g;
|
|
int hashCode4 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.c;
|
|
int hashCode5 = str5 == null ? 0 : str5.hashCode();
|
|
String str6 = this.b;
|
|
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 lsm)) {
|
|
return false;
|
|
}
|
|
lsm lsmVar = (lsm) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) lsmVar.a) && C14957gcv.b((Object) this.d, (Object) lsmVar.d) && C14957gcv.b((Object) this.e, (Object) lsmVar.e) && C14957gcv.b((Object) this.g, (Object) lsmVar.g) && C14957gcv.b((Object) this.c, (Object) lsmVar.c) && C14957gcv.b((Object) this.b, (Object) lsmVar.b);
|
|
}
|
|
|
|
public lsm() {
|
|
this((byte) 0);
|
|
}
|
|
}
|