# CameraWatchEventAttached

`import { CameraWatchEventAttached } from "destack:device/binding";`

Camera attached watch event.

```ds title="CameraWatchEventAttached"
export struct CameraWatchEventAttached {
    kind: "attached";
    timestampNs: uint64;
    sequence: uint64;
    camera: CameraDevice;
}
```

[language/library/src/device/binding/camera.ds:212:221](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/camera.ds#L212-L221)

## Members

### `kind: "attached"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `camera: CameraDevice`

Camera device.
