| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[DataTypeFunctionEntry] | The page of matching functions, in ascending function ID order. Empty when no function uses the type. | |
| next_after_function_id | int | Pass as after_function_id to fetch the next page. Absent on the last page. | [optional] |
fromrevengai.models.list_data_type_functions_bodyimportListDataTypeFunctionsBody# TODO update the JSON string belowjson="{}"# create an instance of ListDataTypeFunctionsBody from a JSON stringlist_data_type_functions_body_instance=ListDataTypeFunctionsBody.from_json(json)
# print the JSON string representation of the objectprint(ListDataTypeFunctionsBody.to_json())
# convert the object into a dictlist_data_type_functions_body_dict=list_data_type_functions_body_instance.to_dict()
# create an instance of ListDataTypeFunctionsBody from a dictlist_data_type_functions_body_from_dict=ListDataTypeFunctionsBody.from_dict(list_data_type_functions_body_dict)