## Record


An immutable data record.


Usage


``` python
Record(
    id,
    value,
    timestamp=0.0,
)
```


Documented with an `Attributes` section (rather than `Parameters`) to exercise that rendering path.


## Attributes


`id: int`  
Unique record identifier.

`value: str`  
The record value.

`timestamp: float`  
When the record was created.
