| Name | Type | Description | Notes |
|---|---|---|---|
| copies | List[CopySignatureItem] | Signatures to copy. No target may repeat, and no pair may name the same function twice. |
fromrevengai.models.copy_function_signatures_input_bodyimportCopyFunctionSignaturesInputBody# TODO update the JSON string belowjson="{}"# create an instance of CopyFunctionSignaturesInputBody from a JSON stringcopy_function_signatures_input_body_instance=CopyFunctionSignaturesInputBody.from_json(json)
# print the JSON string representation of the objectprint(CopyFunctionSignaturesInputBody.to_json())
# convert the object into a dictcopy_function_signatures_input_body_dict=copy_function_signatures_input_body_instance.to_dict()
# create an instance of CopyFunctionSignaturesInputBody from a dictcopy_function_signatures_input_body_from_dict=CopyFunctionSignaturesInputBody.from_dict(copy_function_signatures_input_body_dict)