# HostPathPayloadBytes

`import { HostPathPayloadBytes } from "destack:error";`

Byte-path payload attached to an error context.

```ds title="HostPathPayloadBytes"
export struct HostPathPayloadBytes {
    kind: "bytes";
    bytes: uint8[];
}
```

[language/library/src/error/host.ds:278:283](https://github.com/destack-sh/destack/blob/main/language/library/src/error/host.ds#L278-L283)

## Members

### `kind: "bytes"`

Discriminator for this path-payload variant.

### `bytes: uint8[]`

Raw path bytes.
