49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FeA {
|
|
|
|
@SerializedName("header")
|
|
public final String b;
|
|
|
|
@SerializedName("code")
|
|
public final String c;
|
|
|
|
@SerializedName("description")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
StringBuilder sb = new StringBuilder("AccountStatusEntity(code=");
|
|
sb.append(str);
|
|
sb.append(", description=");
|
|
sb.append(str2);
|
|
sb.append(", header=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
int hashCode2 = this.e.hashCode();
|
|
String str = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof FeA)) {
|
|
return false;
|
|
}
|
|
FeA feA = (FeA) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) feA.c) && C14957gcv.b((Object) this.e, (Object) feA.e) && C14957gcv.b((Object) this.b, (Object) feA.b);
|
|
}
|
|
}
|