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

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

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

    public TopicReportResponse(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "title") String str) {
        this.f10975a = j8;
        this.f10976b = str;
    }

    public final TopicReportResponse copy(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "title") String str) {
        return new TopicReportResponse(j8, str);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof TopicReportResponse)) {
            return false;
        }
        TopicReportResponse topicReportResponse = (TopicReportResponse) obj;
        return this.f10975a == topicReportResponse.f10975a && g.a(this.f10976b, topicReportResponse.f10976b);
    }

    public final int hashCode() {
        long j8 = this.f10975a;
        int i = ((int) (j8 ^ (j8 >>> 32))) * 31;
        String str = this.f10976b;
        return i + (str == null ? 0 : str.hashCode());
    }

    public final String toString() {
        return "TopicReportResponse(id=" + this.f10975a + ", title=" + this.f10976b + ")";
    }
}
