62 lines
1.6 KiB
Java
62 lines
1.6 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class UWr {
|
||
|
|
||
|
@SerializedName("consentType")
|
||
|
private final List<String> b;
|
||
|
|
||
|
@SerializedName("function")
|
||
|
private final String c;
|
||
|
|
||
|
@SerializedName("tilesVersion")
|
||
|
private final String e;
|
||
|
|
||
|
public /* synthetic */ UWr(List list, String str) {
|
||
|
this(list, str, (byte) 0);
|
||
|
}
|
||
|
|
||
|
public UWr(List<String> list, String str, byte b) {
|
||
|
C14957gcv.e(list, "");
|
||
|
this.b = list;
|
||
|
this.e = str;
|
||
|
this.c = null;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
List<String> list = this.b;
|
||
|
String str = this.e;
|
||
|
String str2 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("EkycPrivacyConsentInquiryRequest(consentType=");
|
||
|
sb.append(list);
|
||
|
sb.append(", tilesVersion=");
|
||
|
sb.append(str);
|
||
|
sb.append(", function=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.b.hashCode();
|
||
|
String str = this.e;
|
||
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.c;
|
||
|
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof UWr)) {
|
||
|
return false;
|
||
|
}
|
||
|
UWr uWr = (UWr) obj;
|
||
|
return C14957gcv.b(this.b, uWr.b) && C14957gcv.b((Object) this.e, (Object) uWr.e) && C14957gcv.b((Object) this.c, (Object) uWr.c);
|
||
|
}
|
||
|
}
|