UserJobDetails
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
username |
str |
||
user_id |
str |
||
jobs |
Example
from h2ogpte.rest_sync.models.user_job_details import UserJobDetails
# TODO update the JSON string below
json = "{}"
# create an instance of UserJobDetails from a JSON string
user_job_details_instance = UserJobDetails.from_json(json)
# print the JSON string representation of the object
print(UserJobDetails.to_json())
# convert the object into a dict
user_job_details_dict = user_job_details_instance.to_dict()
# create an instance of UserJobDetails from a dict
user_job_details_from_dict = UserJobDetails.from_dict(user_job_details_dict)