github-actions[bot] cff4edc79f
Generated API update (#2)
Co-authored-by: AuHau <6072250+AuHau@users.noreply.github.com>
2025-03-31 17:52:10 +02:00

943 B

Slot

Properties

Name Type Description Notes
id str Keccak hash of the abi encoded tuple (RequestId, slot index) [optional]
request StorageRequest [optional]
slot_index int Slot Index number [optional]

Example

from codex_api_client.models.slot import Slot

# 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] [Back to API list] [Back to README]