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

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

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

    public GenreListResponse(@InterfaceC1389i(name = "genres") List<GenreResponse> list, @InterfaceC1389i(name = "countries") List<CountryResponse> list2) {
        this.f10780a = list;
        this.f10781b = list2;
    }

    public final GenreListResponse copy(@InterfaceC1389i(name = "genres") List<GenreResponse> list, @InterfaceC1389i(name = "countries") List<CountryResponse> list2) {
        return new GenreListResponse(list, list2);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof GenreListResponse)) {
            return false;
        }
        GenreListResponse genreListResponse = (GenreListResponse) obj;
        return g.a(this.f10780a, genreListResponse.f10780a) && g.a(this.f10781b, genreListResponse.f10781b);
    }

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

    public final String toString() {
        return "GenreListResponse(genres=" + this.f10780a + ", countries=" + this.f10781b + ")";
    }
}
