package com.chartboost.sdk.impl;

import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class m2 {

    /* renamed from: a  reason: collision with root package name */
    public final String f1753a;
    public final Boolean b;

    public m2(String url, Boolean bool) {
        Intrinsics.checkNotNullParameter(url, "url");
        this.f1753a = url;
        this.b = bool;
    }

    public final Boolean a() {
        return this.b;
    }

    public final String b() {
        return this.f1753a;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof m2) {
            m2 m2Var = (m2) obj;
            return Intrinsics.areEqual(this.f1753a, m2Var.f1753a) && Intrinsics.areEqual(this.b, m2Var.b);
        }
        return false;
    }

    public int hashCode() {
        int hashCode = this.f1753a.hashCode() * 31;
        Boolean bool = this.b;
        return hashCode + (bool == null ? 0 : bool.hashCode());
    }

    public String toString() {
        String str = this.f1753a;
        return "CBUrl(url=" + str + ", shouldDismiss=" + this.b + ")";
    }
}
