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

92 lines
2.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class OeN {
@SerializedName("longDesc")
public final List<WKU> a;
@SerializedName("maxAmount")
public final Integer b;
@SerializedName("incrementalAmount")
public final Integer c;
@SerializedName("defaultFlag")
public final String d;
@SerializedName("minAmount")
public final Integer e;
@SerializedName("productCode")
public final String f;
@SerializedName("subAttribute")
public final String g;
@SerializedName("sortSequence")
public final Integer h;
public final String toString() {
String str = this.g;
String str2 = this.f;
Integer num = this.h;
String str3 = this.d;
Integer num2 = this.e;
Integer num3 = this.b;
Integer num4 = this.c;
List<WKU> list = this.a;
StringBuilder sb = new StringBuilder("ProductDetailListEntity(subAttribute=");
sb.append(str);
sb.append(", productCode=");
sb.append(str2);
sb.append(", sortSequence=");
sb.append(num);
sb.append(", defaultFlag=");
sb.append(str3);
sb.append(", minAmount=");
sb.append(num2);
sb.append(", maxAmount=");
sb.append(num3);
sb.append(", incrementalAmount=");
sb.append(num4);
sb.append(", longDesc=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.g;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.f;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
Integer num = this.h;
int hashCode3 = num == null ? 0 : num.hashCode();
String str3 = this.d;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
Integer num2 = this.e;
int hashCode5 = num2 == null ? 0 : num2.hashCode();
Integer num3 = this.b;
int hashCode6 = num3 == null ? 0 : num3.hashCode();
Integer num4 = this.c;
int hashCode7 = num4 == null ? 0 : num4.hashCode();
List<WKU> list = this.a;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof OeN)) {
return false;
}
OeN oeN = (OeN) obj;
return C14957gcv.b((Object) this.g, (Object) oeN.g) && C14957gcv.b((Object) this.f, (Object) oeN.f) && C14957gcv.b(this.h, oeN.h) && C14957gcv.b((Object) this.d, (Object) oeN.d) && C14957gcv.b(this.e, oeN.e) && C14957gcv.b(this.b, oeN.b) && C14957gcv.b(this.c, oeN.c) && C14957gcv.b(this.a, oeN.a);
}
}