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

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

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

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

    public VoteResponse(@InterfaceC1389i(name = "movieId") Long l8, @InterfaceC1389i(name = "count") Long l9, @InterfaceC1389i(name = "totalScore") Long l10) {
        this.f10999a = l8;
        this.f11000b = l9;
        this.f11001c = l10;
    }

    public final VoteResponse copy(@InterfaceC1389i(name = "movieId") Long l8, @InterfaceC1389i(name = "count") Long l9, @InterfaceC1389i(name = "totalScore") Long l10) {
        return new VoteResponse(l8, l9, l10);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof VoteResponse)) {
            return false;
        }
        VoteResponse voteResponse = (VoteResponse) obj;
        return g.a(this.f10999a, voteResponse.f10999a) && g.a(this.f11000b, voteResponse.f11000b) && g.a(this.f11001c, voteResponse.f11001c);
    }

    public final int hashCode() {
        Long l8 = this.f10999a;
        int iHashCode = (l8 == null ? 0 : l8.hashCode()) * 31;
        Long l9 = this.f11000b;
        int iHashCode2 = (iHashCode + (l9 == null ? 0 : l9.hashCode())) * 31;
        Long l10 = this.f11001c;
        return iHashCode2 + (l10 != null ? l10.hashCode() : 0);
    }

    public final String toString() {
        return "VoteResponse(movieId=" + this.f10999a + ", count=" + this.f11000b + ", totalScore=" + this.f11001c + ")";
    }
}
