# module `concrete.fhe.compilation.value`
Declaration of `Value` class.
---
## class `Value`
Value class, to store scalar or tensor values which can be encrypted or clear.
### method `__init__`
```python
__init__(inner: Value)
```
---
### method `deserialize`
```python
deserialize(serialized_data: bytes) → Value
```
Deserialize data from bytes.
**Args:**
serialized_data (bytes): previously serialized data
**Returns:**
Value: deserialized data
---
### method `serialize`
```python
serialize() → bytes
```
Serialize data into bytes.
**Returns:**
bytes: serialized data