| Name | Type | Description | Notes |
|---|---|---|---|
| updated_at | datetime | When this version was written. Absent on a version that predates the recorded history. | [optional] |
| updated_by | HistoryActor | Who wrote this version. Absent on a version that predates the recorded history. | [optional] |
| value | FunctionSignatureEntry | The signature as it stood in this version. |
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)