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

68 lines
2.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class YEq {
@SerializedName("sequence")
public final Integer a;
@SerializedName("rawValue")
public final List<String> b;
@SerializedName("key")
public final List<String> c;
@SerializedName("selectedOption")
public final Boolean d;
@SerializedName("displayValue")
public final List<String> e;
public final String toString() {
List<String> list = this.e;
List<String> list2 = this.c;
List<String> list3 = this.b;
Boolean bool = this.d;
Integer num = this.a;
StringBuilder sb = new StringBuilder("EasycashBusinessAndMaritalInfoValueEntity(displayValue=");
sb.append(list);
sb.append(", key=");
sb.append(list2);
sb.append(", rawValue=");
sb.append(list3);
sb.append(", selectedOption=");
sb.append(bool);
sb.append(", sequence=");
sb.append(num);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<String> list = this.e;
int hashCode = list == null ? 0 : list.hashCode();
List<String> list2 = this.c;
int hashCode2 = list2 == null ? 0 : list2.hashCode();
List<String> list3 = this.b;
int hashCode3 = list3 == null ? 0 : list3.hashCode();
Boolean bool = this.d;
int hashCode4 = bool == null ? 0 : bool.hashCode();
Integer num = this.a;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (num != null ? num.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof YEq)) {
return false;
}
YEq yEq = (YEq) obj;
return C14957gcv.b(this.e, yEq.e) && C14957gcv.b(this.c, yEq.c) && C14957gcv.b(this.b, yEq.b) && C14957gcv.b(this.d, yEq.d) && C14957gcv.b(this.a, yEq.a);
}
}