Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

FunctionSignatureVersion

Properties

NameTypeDescriptionNotes
updated_atdatetimeWhen this version was written. Absent on a version that predates the recorded history.[optional]
updated_byHistoryActorWho wrote this version. Absent on a version that predates the recorded history.[optional]
valueFunctionSignatureEntryThe signature as it stood in this version.

Example

fromrevengai.models.function_signature_versionimportFunctionSignatureVersion# TODO update the JSON string belowjson="{}"# create an instance of FunctionSignatureVersion from a JSON stringfunction_signature_version_instance=FunctionSignatureVersion.from_json(json)
# print the JSON string representation of the objectprint(FunctionSignatureVersion.to_json())
# convert the object into a dictfunction_signature_version_dict=function_signature_version_instance.to_dict()
# create an instance of FunctionSignatureVersion from a dictfunction_signature_version_from_dict=FunctionSignatureVersion.from_dict(function_signature_version_dict)

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