package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public class siI { @SerializedName("functionId") public String b; @SerializedName("imageUrl") public String d; public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } siI sii = (siI) obj; String str = this.d; if (str == null ? sii.d != null : !str.equals(sii.d)) { return false; } String str2 = this.b; String str3 = sii.b; return str2 != null ? str2.equals(str3) : str3 == null; } public int hashCode() { String str = this.d; int hashCode = str != null ? str.hashCode() : 0; String str2 = this.b; return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0); } }