package com.martsnew.data.model.response;

import P6.g;
import java.util.List;
import o6.InterfaceC1389i;
import o6.InterfaceC1392l;

/* JADX INFO: loaded from: classes.dex */
@InterfaceC1392l(generateAdapter = true)
public final class ShortcutResponse {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final String f10930a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final String f10931b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final List f10932c;

    public ShortcutResponse(@InterfaceC1389i(name = "id") String str, @InterfaceC1389i(name = "title") String str2, @InterfaceC1389i(name = "filter") List<FilterResponse> list) {
        this.f10930a = str;
        this.f10931b = str2;
        this.f10932c = list;
    }

    public final ShortcutResponse copy(@InterfaceC1389i(name = "id") String str, @InterfaceC1389i(name = "title") String str2, @InterfaceC1389i(name = "filter") List<FilterResponse> list) {
        return new ShortcutResponse(str, str2, list);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ShortcutResponse)) {
            return false;
        }
        ShortcutResponse shortcutResponse = (ShortcutResponse) obj;
        return g.a(this.f10930a, shortcutResponse.f10930a) && g.a(this.f10931b, shortcutResponse.f10931b) && g.a(this.f10932c, shortcutResponse.f10932c);
    }

    public final int hashCode() {
        String str = this.f10930a;
        int iHashCode = (str == null ? 0 : str.hashCode()) * 31;
        String str2 = this.f10931b;
        int iHashCode2 = (iHashCode + (str2 == null ? 0 : str2.hashCode())) * 31;
        List list = this.f10932c;
        return iHashCode2 + (list != null ? list.hashCode() : 0);
    }

    public final String toString() {
        return "ShortcutResponse(id=" + this.f10930a + ", title=" + this.f10931b + ", filter=" + this.f10932c + ")";
    }
}
