Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1023 Bytes

File metadata and controls

29 lines (20 loc) · 1023 Bytes

CreateAIDecompOutputBody

Properties

Name Type Description Notes
status bool

Example

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]