package com.martsnew.data.model.request;

import o6.InterfaceC1389i;
import o6.InterfaceC1392l;

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

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

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

    public RatingRequest(@InterfaceC1389i(name = "movie_id") long j8, @InterfaceC1389i(name = "vote") int i) {
        this.f10623a = j8;
        this.f10624b = i;
    }

    public final RatingRequest copy(@InterfaceC1389i(name = "movie_id") long j8, @InterfaceC1389i(name = "vote") int i) {
        return new RatingRequest(j8, i);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof RatingRequest)) {
            return false;
        }
        RatingRequest ratingRequest = (RatingRequest) obj;
        return this.f10623a == ratingRequest.f10623a && this.f10624b == ratingRequest.f10624b;
    }

    public final int hashCode() {
        long j8 = this.f10623a;
        return (((int) (j8 ^ (j8 >>> 32))) * 31) + this.f10624b;
    }

    public final String toString() {
        return "RatingRequest(movieId=" + this.f10623a + ", vote=" + this.f10624b + ")";
    }
}
