34 lines
785 B
Java
34 lines
785 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class TL {
|
|
|
|
@SerializedName("isAlertRequired")
|
|
public Boolean a;
|
|
|
|
public final String toString() {
|
|
Boolean bool = this.a;
|
|
StringBuilder sb = new StringBuilder("PartnerWebViewLocationRequest(isAlertRequired=");
|
|
sb.append(bool);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Boolean bool = this.a;
|
|
if (bool == null) {
|
|
return 0;
|
|
}
|
|
return bool.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof TL) && C14957gcv.b(this.a, ((TL) obj).a);
|
|
}
|
|
}
|