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 ResultResponse<T> {

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

    public ResultResponse(@InterfaceC1389i(name = "result") T t6) {
        this.f10915a = t6;
    }

    public final ResultResponse<T> copy(@InterfaceC1389i(name = "result") T t6) {
        return new ResultResponse<>(t6);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        return (obj instanceof ResultResponse) && g.a(this.f10915a, ((ResultResponse) obj).f10915a);
    }

    public final int hashCode() {
        Object obj = this.f10915a;
        if (obj == null) {
            return 0;
        }
        return obj.hashCode();
    }

    public final String toString() {
        return "ResultResponse(result=" + this.f10915a + ")";
    }
}
