Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.48 KB

File metadata and controls

31 lines (22 loc) · 1.48 KB

UpdateFunctionSignatureInputBody

Properties

NameTypeDescriptionNotes
calling_conventionstrCalling convention. Omit when there is none to record.[optional]
parametersList[SignatureParameterInput]Parameters in argument order. An empty list records a function that takes no arguments.
return_data_type_idintReturn 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)

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