Name | Type | Description | Notes |
---|---|---|---|
slot_index | int | Slot Index number | |
request_id | str | 32bits identifier encoded in hex-decimal string. | |
request | StorageRequest | [optional] | |
reservation | Reservation | [optional] | |
state | str | Description of the slot's |
from codex_api_client.models.slot_agent import SlotAgent
# TODO update the JSON string below
json = "{}"
# create an instance of SlotAgent from a JSON string
slot_agent_instance = SlotAgent.from_json(json)
# print the JSON string representation of the object
print(SlotAgent.to_json())
# convert the object into a dict
slot_agent_dict = slot_agent_instance.to_dict()
# create an instance of SlotAgent from a dict
slot_agent_from_dict = SlotAgent.from_dict(slot_agent_dict)