package com.martsnew.data.model.response;

import P6.g;
import o6.InterfaceC1389i;
import o6.InterfaceC1392l;

/* JADX INFO: loaded from: classes.dex */
@InterfaceC1392l(generateAdapter = true)
public final class AllSettingsResponse {

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

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

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

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

    public AllSettingsResponse(@InterfaceC1389i(name = "player") ListPlayerResponse listPlayerResponse, @InterfaceC1389i(name = "download") DownloaderResponse downloaderResponse, @InterfaceC1389i(name = "contacts") ContactLinkResponse contactLinkResponse, @InterfaceC1389i(name = "app_token") String str) {
        this.f10651a = listPlayerResponse;
        this.f10652b = downloaderResponse;
        this.f10653c = contactLinkResponse;
        this.f10654d = str;
    }

    public final AllSettingsResponse copy(@InterfaceC1389i(name = "player") ListPlayerResponse listPlayerResponse, @InterfaceC1389i(name = "download") DownloaderResponse downloaderResponse, @InterfaceC1389i(name = "contacts") ContactLinkResponse contactLinkResponse, @InterfaceC1389i(name = "app_token") String str) {
        return new AllSettingsResponse(listPlayerResponse, downloaderResponse, contactLinkResponse, str);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof AllSettingsResponse)) {
            return false;
        }
        AllSettingsResponse allSettingsResponse = (AllSettingsResponse) obj;
        return g.a(this.f10651a, allSettingsResponse.f10651a) && g.a(this.f10652b, allSettingsResponse.f10652b) && g.a(this.f10653c, allSettingsResponse.f10653c) && g.a(this.f10654d, allSettingsResponse.f10654d);
    }

    public final int hashCode() {
        ListPlayerResponse listPlayerResponse = this.f10651a;
        int iHashCode = (listPlayerResponse == null ? 0 : listPlayerResponse.hashCode()) * 31;
        DownloaderResponse downloaderResponse = this.f10652b;
        int iHashCode2 = (iHashCode + (downloaderResponse == null ? 0 : downloaderResponse.hashCode())) * 31;
        ContactLinkResponse contactLinkResponse = this.f10653c;
        int iHashCode3 = (iHashCode2 + (contactLinkResponse == null ? 0 : contactLinkResponse.hashCode())) * 31;
        String str = this.f10654d;
        return iHashCode3 + (str != null ? str.hashCode() : 0);
    }

    public final String toString() {
        return "AllSettingsResponse(player=" + this.f10651a + ", downloader=" + this.f10652b + ", contactLink=" + this.f10653c + ", appToken=" + this.f10654d + ")";
    }
}
