Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.44 KB

File metadata and controls

30 lines (21 loc) · 1.44 KB

CopyFunctionSignaturesOutputBody

Properties

NameTypeDescriptionNotes
data_typesList[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.
signaturesList[FunctionSignatureEntry]The stored signatures of the target functions, in request order.

Example

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)

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