Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

SlotAgent.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

SlotAgent

Properties

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

Example

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)

[Back to Model list] [Back to API list] [Back to README]