# [Ride v3] DataEntry
⚠️ This is the documentation for the Standard library version 4 and 3. We recommend to use version 5.
⚠️ The structure is disabled in Standard library version 4. Use
BinaryEntry,BooleanEntry,IntegerEntry, andStringEntryinstead of it.
DataEntry is a structure that sets key and value of account data storage entry. Adding or changing an entry is performed only if the structure is included in the callable function result.
# Constructor
DataEntry(key: String, value: Int|Boolean|ByteVector|String)
# Fields
| # | Name | Data type | Description |
|---|---|---|---|
| 1 | key | String | Key of a record |
| 2 | value | Int|Boolean|ByteVector|String | Value of a record |