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

65 lines
1.7 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class NsL {
@SerializedName("description")
public final String b;
@SerializedName("code")
public final String c;
@SerializedName("employmentCharacteristicDisplayOrder")
public final Integer e;
private NsL(byte b) {
this.c = null;
this.b = null;
this.e = null;
}
private /* synthetic */ NsL(char c) {
this((byte) 0);
}
public final String toString() {
String str = this.c;
String str2 = this.b;
Integer num = this.e;
StringBuilder sb = new StringBuilder("EmploymentCharacteristicEntity(code=");
sb.append(str);
sb.append(", description=");
sb.append(str2);
sb.append(", employmentCharacteristicDisplayOrder=");
sb.append(num);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
Integer num = this.e;
return (((hashCode * 31) + hashCode2) * 31) + (num != null ? num.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NsL)) {
return false;
}
NsL nsL = (NsL) obj;
return C14957gcv.b((Object) this.c, (Object) nsL.c) && C14957gcv.b((Object) this.b, (Object) nsL.b) && C14957gcv.b(this.e, nsL.e);
}
public NsL() {
this((char) 0);
}
}