| Name | Type | Description | Notes |
|---|---|---|---|
| data_types | List[DataTypeEntry] | The data types this analysis gained or had replaced, ordered by data_type_id. Empty when every type the copied signatures need was already stored unchanged. | |
| signatures | List[FunctionSignatureEntry] | The stored signatures of the target functions, in request order. |
fromrevengai.models.copy_function_signatures_output_bodyimportCopyFunctionSignaturesOutputBody# TODO update the JSON string belowjson="{}"# create an instance of CopyFunctionSignaturesOutputBody from a JSON stringcopy_function_signatures_output_body_instance=CopyFunctionSignaturesOutputBody.from_json(json)
# print the JSON string representation of the objectprint(CopyFunctionSignaturesOutputBody.to_json())
# convert the object into a dictcopy_function_signatures_output_body_dict=copy_function_signatures_output_body_instance.to_dict()
# create an instance of CopyFunctionSignaturesOutputBody from a dictcopy_function_signatures_output_body_from_dict=CopyFunctionSignaturesOutputBody.from_dict(copy_function_signatures_output_body_dict)