You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Signatures to copy. No target may repeat, and no pair may name the same function twice.
Example
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)