Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

DecompilationData

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
decompilation str Source code with placeholders replaced [optional]
status str Task status

Example

from revengai.models.decompilation_data import DecompilationData

# TODO update the JSON string below
json = "{}"
# create an instance of DecompilationData from a JSON string
decompilation_data_instance = DecompilationData.from_json(json)
# print the JSON string representation of the object
print(DecompilationData.to_json())

# convert the object into a dict
decompilation_data_dict = decompilation_data_instance.to_dict()
# create an instance of DecompilationData from a dict
decompilation_data_from_dict = DecompilationData.from_dict(decompilation_data_dict)

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