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

58 lines
1.4 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes.dex */
public final class ASD extends C16562pOe {
@SerializedName("remark")
public final String c;
@SerializedName("plans")
public final List<C3560azp> d;
/* JADX WARN: Multi-variable type inference failed */
private ASD(List<? extends C3560azp> list) {
this.d = list;
this.c = null;
}
private /* synthetic */ ASD(byte b) {
this(C14851gaI.c);
}
public final String toString() {
List<C3560azp> list = this.d;
String str = this.c;
StringBuilder sb = new StringBuilder("DeejungTransferPlansListResponseEntity(plans=");
sb.append(list);
sb.append(", remark=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<C3560azp> list = this.d;
int hashCode = list == null ? 0 : list.hashCode();
String str = this.c;
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ASD)) {
return false;
}
ASD asd = (ASD) obj;
return C14957gcv.b(this.d, asd.d) && C14957gcv.b((Object) this.c, (Object) asd.c);
}
public ASD() {
this((byte) 0);
}
}