package com.martsnew.data.model.request;

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

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

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

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

    public ReportRequest(@InterfaceC1389i(name = "movie_id") long j8, @InterfaceC1389i(name = "topics") List<Long> list, @InterfaceC1389i(name = "message") String str) {
        g.e(list, "topicIds");
        this.f10636a = j8;
        this.f10637b = list;
        this.f10638c = str;
    }

    public final ReportRequest copy(@InterfaceC1389i(name = "movie_id") long j8, @InterfaceC1389i(name = "topics") List<Long> list, @InterfaceC1389i(name = "message") String str) {
        g.e(list, "topicIds");
        return new ReportRequest(j8, list, str);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof ReportRequest)) {
            return false;
        }
        ReportRequest reportRequest = (ReportRequest) obj;
        return this.f10636a == reportRequest.f10636a && g.a(this.f10637b, reportRequest.f10637b) && g.a(this.f10638c, reportRequest.f10638c);
    }

    public final int hashCode() {
        long j8 = this.f10636a;
        int iHashCode = (this.f10637b.hashCode() + (((int) (j8 ^ (j8 >>> 32))) * 31)) * 31;
        String str = this.f10638c;
        return iHashCode + (str == null ? 0 : str.hashCode());
    }

    public final String toString() {
        return "ReportRequest(movieId=" + this.f10636a + ", topicIds=" + this.f10637b + ", message=" + this.f10638c + ")";
    }
}
