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
Every version of the signature, newest first. The first element is the current value, so the list is never empty; a signature that has never been edited has that one element only.
Example
fromrevengai.models.get_function_signature_history_bodyimportGetFunctionSignatureHistoryBody# TODO update the JSON string belowjson="{}"# create an instance of GetFunctionSignatureHistoryBody from a JSON stringget_function_signature_history_body_instance=GetFunctionSignatureHistoryBody.from_json(json)
# print the JSON string representation of the objectprint(GetFunctionSignatureHistoryBody.to_json())
# convert the object into a dictget_function_signature_history_body_dict=get_function_signature_history_body_instance.to_dict()
# create an instance of GetFunctionSignatureHistoryBody from a dictget_function_signature_history_body_from_dict=GetFunctionSignatureHistoryBody.from_dict(get_function_signature_history_body_dict)