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

53 lines
1.6 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;
/* renamed from: o.hpp, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C15700hpp {
@SerializedName("newFormattedAddresses")
public final List<List<String>> b;
@SerializedName("requestProduct")
public final List<idg> c;
@SerializedName("newAddressUsage")
public final String d;
public final String toString() {
String str = this.d;
List<List<String>> list = this.b;
List<idg> list2 = this.c;
StringBuilder sb = new StringBuilder("MailingAddressConfirmationDetailsResponseEntity(newAddressUsage=");
sb.append(str);
sb.append(", formattedAddresses=");
sb.append(list);
sb.append(", requestProduct=");
sb.append(list2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
int hashCode = str == null ? 0 : str.hashCode();
List<List<String>> list = this.b;
int hashCode2 = list == null ? 0 : list.hashCode();
List<idg> list2 = this.c;
return (((hashCode * 31) + hashCode2) * 31) + (list2 != null ? list2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C15700hpp)) {
return false;
}
C15700hpp c15700hpp = (C15700hpp) obj;
return C14957gcv.b((Object) this.d, (Object) c15700hpp.d) && C14957gcv.b(this.b, c15700hpp.b) && C14957gcv.b(this.c, c15700hpp.c);
}
}