package com.debridstream.tv;

import androidx.compose.runtime.internal.StabilityInferred;
import com.debridstream.tv.data.home.HomeMetaItem;
import java.util.List;
import kotlin.jvm.internal.o;
import q.AbstractC2761L;

/* JADX INFO: loaded from: classes.dex */
@StabilityInferred(parameters = 0)
public final class HomeSection {
    public static final int $stable = 8;
    private final String id;
    private final List<HomeMetaItem> items;
    private final String title;

    public HomeSection(String id, String title, List<HomeMetaItem> items) {
        o.h(id, "id");
        o.h(title, "title");
        o.h(items, "items");
        this.id = id;
        this.title = title;
        this.items = items;
    }

    /* JADX WARN: Multi-variable type inference failed */
    public static /* synthetic */ HomeSection copy$default(HomeSection homeSection, String str, String str2, List list, int i6, Object obj) {
        if ((i6 & 1) != 0) {
            str = homeSection.id;
        }
        if ((i6 & 2) != 0) {
            str2 = homeSection.title;
        }
        if ((i6 & 4) != 0) {
            list = homeSection.items;
        }
        return homeSection.copy(str, str2, list);
    }

    public final String component1() {
        return this.id;
    }

    public final String component2() {
        return this.title;
    }

    public final List<HomeMetaItem> component3() {
        return this.items;
    }

    public final HomeSection copy(String id, String title, List<HomeMetaItem> items) {
        o.h(id, "id");
        o.h(title, "title");
        o.h(items, "items");
        return new HomeSection(id, title, items);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof HomeSection)) {
            return false;
        }
        HomeSection homeSection = (HomeSection) obj;
        return o.c(this.id, homeSection.id) && o.c(this.title, homeSection.title) && o.c(this.items, homeSection.items);
    }

    public final String getId() {
        return this.id;
    }

    public final List<HomeMetaItem> getItems() {
        return this.items;
    }

    public final String getTitle() {
        return this.title;
    }

    public int hashCode() {
        return this.items.hashCode() + AbstractC2761L.b(this.id.hashCode() * 31, 31, this.title);
    }

    public String toString() {
        String str = this.id;
        String str2 = this.title;
        List<HomeMetaItem> list = this.items;
        StringBuilder sbI = AbstractC2761L.i("HomeSection(id=", str, ", title=", str2, ", items=");
        sbI.append(list);
        sbI.append(")");
        return sbI.toString();
    }
}
