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

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

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

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

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

    public ListPlayerResponse(@InterfaceC1389i(name = "allowed") Boolean bool, @InterfaceC1389i(name = "percent_show") Integer num, @InterfaceC1389i(name = "force") Integer num2, @InterfaceC1389i(name = "players") List<PlayerResponse> list) {
        this.f10835a = bool;
        this.f10836b = num;
        this.f10837c = num2;
        this.f10838d = list;
    }

    public final ListPlayerResponse copy(@InterfaceC1389i(name = "allowed") Boolean bool, @InterfaceC1389i(name = "percent_show") Integer num, @InterfaceC1389i(name = "force") Integer num2, @InterfaceC1389i(name = "players") List<PlayerResponse> list) {
        return new ListPlayerResponse(bool, num, num2, list);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ListPlayerResponse)) {
            return false;
        }
        ListPlayerResponse listPlayerResponse = (ListPlayerResponse) obj;
        return g.a(this.f10835a, listPlayerResponse.f10835a) && g.a(this.f10836b, listPlayerResponse.f10836b) && g.a(this.f10837c, listPlayerResponse.f10837c) && g.a(this.f10838d, listPlayerResponse.f10838d);
    }

    public final int hashCode() {
        Boolean bool = this.f10835a;
        int iHashCode = (bool == null ? 0 : bool.hashCode()) * 31;
        Integer num = this.f10836b;
        int iHashCode2 = (iHashCode + (num == null ? 0 : num.hashCode())) * 31;
        Integer num2 = this.f10837c;
        int iHashCode3 = (iHashCode2 + (num2 == null ? 0 : num2.hashCode())) * 31;
        List list = this.f10838d;
        return iHashCode3 + (list != null ? list.hashCode() : 0);
    }

    public final String toString() {
        return "ListPlayerResponse(allowed=" + this.f10835a + ", percentShow=" + this.f10836b + ", force=" + this.f10837c + ", players=" + this.f10838d + ")";
    }
}
