| Name | Type | Description | Notes |
|---|---|---|---|
| last_change | str | [optional] | |
| addr | int | Memory address of the function | |
| size | int | Size of the function in bytes | |
| header | FunctionHeader | Function header information | |
| stack_vars | Dict[str, StackVariable] | [optional] | |
| name | str | Name of the function | |
| type | str | Return type of the function | |
| artifact_type | str | Type of artifact that the structure is associated with | [optional] [default to 'Function'] |
from revengai.models.function_type_input import FunctionTypeInput
# TODO update the JSON string below
json = "{}"
# create an instance of FunctionTypeInput from a JSON string
function_type_input_instance = FunctionTypeInput.from_json(json)
# print the JSON string representation of the object
print(FunctionTypeInput.to_json())
# convert the object into a dict
function_type_input_dict = function_type_input_instance.to_dict()
# create an instance of FunctionTypeInput from a dict
function_type_input_from_dict = FunctionTypeInput.from_dict(function_type_input_dict)