AgentKey
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
id |
str |
[optional] |
|
name |
str |
||
type |
str |
||
description |
str |
[optional] |
|
created_at |
str |
[optional] |
|
updated_at |
str |
[optional] |
|
owner_email |
str |
[optional] |
Example
from h2ogpte.rest_sync.models.agent_key import AgentKey
# TODO update the JSON string below
json = "{}"
# create an instance of AgentKey from a JSON string
agent_key_instance = AgentKey.from_json(json)
# print the JSON string representation of the object
print(AgentKey.to_json())
# convert the object into a dict
agent_key_dict = agent_key_instance.to_dict()
# create an instance of AgentKey from a dict
agent_key_from_dict = AgentKey.from_dict(agent_key_dict)