> ISPO SDK documentation. [HTML](https://ispo.ai/docs/types/core.Supporting_types.ProjectDataPlaneResponse.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Type Alias ProjectDataPlaneResponse

```typescript
ProjectDataPlaneResponse:
    | {
        ispo: typeof PROJECT_DATA_PLANE_PROTOCOL;
        ok: true;
        op: "data-reply";
        result?: unknown;
    }
    | {
        error: ProjectRpcErrorPayload;
        ispo: typeof PROJECT_DATA_PLANE_PROTOCOL;
        ok: false;
        op: "data-reply";
    }
```

Types: [PROJECT\_DATA\_PLANE\_PROTOCOL](../variables/core.Supporting_types.PROJECT_DATA_PLANE_PROTOCOL.md), [ProjectRpcErrorPayload](../interfaces/core.ProjectRpcErrorPayload.md)
