| Name |
Type |
Description |
Notes |
| var_schema |
str |
A URL to the JSON Schema for this object. |
[optional] [readonly] |
| status |
bool |
|
|
from revengai.models.create_ai_decomp_output_body import CreateAIDecompOutputBody
# TODO update the JSON string below
json = "{}"
# create an instance of CreateAIDecompOutputBody from a JSON string
create_ai_decomp_output_body_instance = CreateAIDecompOutputBody.from_json(json)
# print the JSON string representation of the object
print(CreateAIDecompOutputBody.to_json())
# convert the object into a dict
create_ai_decomp_output_body_dict = create_ai_decomp_output_body_instance.to_dict()
# create an instance of CreateAIDecompOutputBody from a dict
create_ai_decomp_output_body_from_dict = CreateAIDecompOutputBody.from_dict(create_ai_decomp_output_body_dict)
[Back to Model list] [Back to API list] [Back to README]