package c.a.z; import c.d.b.a.a; import d0.z.d.m; import java.io.Serializable; /* compiled from: SelectorBottomSheet.kt */ public final class b0 implements Serializable { private final CharSequence description; private final String iconUri; private final String title; public b0(String str, CharSequence charSequence, String str2) { m.checkNotNullParameter(str, "title"); this.title = str; this.description = charSequence; this.iconUri = str2; } public final CharSequence a() { return this.description; } public final String b() { return this.iconUri; } public final String c() { return this.title; } @Override // java.lang.Object public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof b0)) { return false; } b0 b0Var = (b0) obj; return m.areEqual(this.title, b0Var.title) && m.areEqual(this.description, b0Var.description) && m.areEqual(this.iconUri, b0Var.iconUri); } @Override // java.lang.Object public int hashCode() { String str = this.title; int i = 0; int hashCode = (str != null ? str.hashCode() : 0) * 31; CharSequence charSequence = this.description; int hashCode2 = (hashCode + (charSequence != null ? charSequence.hashCode() : 0)) * 31; String str2 = this.iconUri; if (str2 != null) { i = str2.hashCode(); } return hashCode2 + i; } @Override // java.lang.Object public String toString() { StringBuilder L = a.L("SimpleBottomSheetItem(title="); L.append(this.title); L.append(", description="); L.append(this.description); L.append(", iconUri="); return a.D(L, this.iconUri, ")"); } }