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

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

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

    public ListSeasonResponse(@InterfaceC1389i(name = "seasons") List<SeasonResponse> list, @InterfaceC1389i(name = "continueWatch") List<ContinueWatchResponse> list2) {
        this.f10843a = list;
        this.f10844b = list2;
    }

    public final ListSeasonResponse copy(@InterfaceC1389i(name = "seasons") List<SeasonResponse> list, @InterfaceC1389i(name = "continueWatch") List<ContinueWatchResponse> list2) {
        return new ListSeasonResponse(list, list2);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ListSeasonResponse)) {
            return false;
        }
        ListSeasonResponse listSeasonResponse = (ListSeasonResponse) obj;
        return g.a(this.f10843a, listSeasonResponse.f10843a) && g.a(this.f10844b, listSeasonResponse.f10844b);
    }

    public final int hashCode() {
        List list = this.f10843a;
        int iHashCode = (list == null ? 0 : list.hashCode()) * 31;
        List list2 = this.f10844b;
        return iHashCode + (list2 != null ? list2.hashCode() : 0);
    }

    public final String toString() {
        return "ListSeasonResponse(seasons=" + this.f10843a + ", continueWatch=" + this.f10844b + ")";
    }
}
