package com.benq.platform.test;

/* JADX INFO: loaded from: classes.dex */
public final class InvocationResult {
    private final String invocationPath;
    private final Object result;

    public InvocationResult(Object obj, String invocationPath) {
        kotlin.jvm.internal.l.e(invocationPath, "invocationPath");
        this.result = obj;
        this.invocationPath = invocationPath;
    }

    public static /* synthetic */ InvocationResult copy$default(InvocationResult invocationResult, Object obj, String str, int i2, Object obj2) {
        if ((i2 & 1) != 0) {
            obj = invocationResult.result;
        }
        if ((i2 & 2) != 0) {
            str = invocationResult.invocationPath;
        }
        return invocationResult.copy(obj, str);
    }

    public final Object component1() {
        return this.result;
    }

    public final String component2() {
        return this.invocationPath;
    }

    public final InvocationResult copy(Object obj, String invocationPath) {
        kotlin.jvm.internal.l.e(invocationPath, "invocationPath");
        return new InvocationResult(obj, invocationPath);
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof InvocationResult)) {
            return false;
        }
        InvocationResult invocationResult = (InvocationResult) obj;
        return kotlin.jvm.internal.l.a(this.result, invocationResult.result) && kotlin.jvm.internal.l.a(this.invocationPath, invocationResult.invocationPath);
    }

    public final String getInvocationPath() {
        return this.invocationPath;
    }

    public final Object getResult() {
        return this.result;
    }

    public int hashCode() {
        Object obj = this.result;
        return ((obj == null ? 0 : obj.hashCode()) * 31) + this.invocationPath.hashCode();
    }

    public String toString() {
        return "InvocationResult(result=" + this.result + ", invocationPath=" + this.invocationPath + ")";
    }
}
