You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]
Example
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)