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 TabResponse {

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

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

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

    public TabResponse(@InterfaceC1389i(name = "id") String str, @InterfaceC1389i(name = "title") String str2, @InterfaceC1389i(name = "data") List<MovieResponse> list) {
        this.f10961a = str;
        this.f10962b = str2;
        this.f10963c = list;
    }

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

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof TabResponse)) {
            return false;
        }
        TabResponse tabResponse = (TabResponse) obj;
        return g.a(this.f10961a, tabResponse.f10961a) && g.a(this.f10962b, tabResponse.f10962b) && g.a(this.f10963c, tabResponse.f10963c);
    }

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

    public final String toString() {
        return "TabResponse(id=" + this.f10961a + ", title=" + this.f10962b + ", data=" + this.f10963c + ")";
    }
}
