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
Parameters in argument order. An empty list records a function that takes no arguments.
return_data_type_id
int
Return type, which must belong to this analysis. Omit for an unresolved return type.
[optional]
Example
fromrevengai.models.update_function_signature_input_bodyimportUpdateFunctionSignatureInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateFunctionSignatureInputBody from a JSON stringupdate_function_signature_input_body_instance=UpdateFunctionSignatureInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateFunctionSignatureInputBody.to_json())
# convert the object into a dictupdate_function_signature_input_body_dict=update_function_signature_input_body_instance.to_dict()
# create an instance of UpdateFunctionSignatureInputBody from a dictupdate_function_signature_input_body_from_dict=UpdateFunctionSignatureInputBody.from_dict(update_function_signature_input_body_dict)