44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class VWp extends C16562pOe {
|
|
|
|
@SerializedName("consentInfo")
|
|
public final List<HNR> c;
|
|
|
|
@SerializedName("sessionId")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
List<HNR> list = this.c;
|
|
StringBuilder sb = new StringBuilder("EkycPrivacyConsentEntity(sessionId=");
|
|
sb.append(str);
|
|
sb.append(", consentInfo=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.e;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
List<HNR> list = this.c;
|
|
return (hashCode * 31) + (list != null ? list.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof VWp)) {
|
|
return false;
|
|
}
|
|
VWp vWp = (VWp) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) vWp.e) && C14957gcv.b(this.c, vWp.c);
|
|
}
|
|
}
|