32 lines
910 B
Markdown
Raw Permalink Normal View History

2024-08-23 16:22:29 +02:00
# Slot
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Keccak hash of the abi encoded tuple (RequestId, slot index) |
**request** | [**StorageRequest**](StorageRequest.md) | |
**slot_index** | **int** | Slot Index number |
2024-08-23 16:22:29 +02:00
## Example
```python
2024-12-18 14:22:21 +01:00
from codex_api_client.models.slot import Slot
2024-08-23 16:22:29 +02:00
# TODO update the JSON string below
json = "{}"
# create an instance of Slot from a JSON string
slot_instance = Slot.from_json(json)
# print the JSON string representation of the object
print(Slot.to_json())
# convert the object into a dict
slot_dict = slot_instance.to_dict()
# create an instance of Slot from a dict
slot_from_dict = Slot.from_dict(slot_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)