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

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

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

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

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public final Integer f10921d;

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

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

    public SeasonResponse(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "name") String str, @InterfaceC1389i(name = "episode_count") Long l8, @InterfaceC1389i(name = "season_number") Integer num, @InterfaceC1389i(name = "air_date") String str2, @InterfaceC1389i(name = "episodes") List<EpisodeResponse> list) {
        this.f10918a = j8;
        this.f10919b = str;
        this.f10920c = l8;
        this.f10921d = num;
        this.f10922e = str2;
        this.f10923f = list;
    }

    public final SeasonResponse copy(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "name") String str, @InterfaceC1389i(name = "episode_count") Long l8, @InterfaceC1389i(name = "season_number") Integer num, @InterfaceC1389i(name = "air_date") String str2, @InterfaceC1389i(name = "episodes") List<EpisodeResponse> list) {
        return new SeasonResponse(j8, str, l8, num, str2, list);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof SeasonResponse)) {
            return false;
        }
        SeasonResponse seasonResponse = (SeasonResponse) obj;
        return this.f10918a == seasonResponse.f10918a && g.a(this.f10919b, seasonResponse.f10919b) && g.a(this.f10920c, seasonResponse.f10920c) && g.a(this.f10921d, seasonResponse.f10921d) && g.a(this.f10922e, seasonResponse.f10922e) && g.a(this.f10923f, seasonResponse.f10923f);
    }

    public final int hashCode() {
        long j8 = this.f10918a;
        int i = ((int) (j8 ^ (j8 >>> 32))) * 31;
        String str = this.f10919b;
        int iHashCode = (i + (str == null ? 0 : str.hashCode())) * 31;
        Long l8 = this.f10920c;
        int iHashCode2 = (iHashCode + (l8 == null ? 0 : l8.hashCode())) * 31;
        Integer num = this.f10921d;
        int iHashCode3 = (iHashCode2 + (num == null ? 0 : num.hashCode())) * 31;
        String str2 = this.f10922e;
        int iHashCode4 = (iHashCode3 + (str2 == null ? 0 : str2.hashCode())) * 31;
        List list = this.f10923f;
        return iHashCode4 + (list != null ? list.hashCode() : 0);
    }

    public final String toString() {
        return "SeasonResponse(id=" + this.f10918a + ", name=" + this.f10919b + ", episodeCount=" + this.f10920c + ", seasonNumber=" + this.f10921d + ", airDate=" + this.f10922e + ", episodes=" + this.f10923f + ")";
    }
}
