Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

ListDataTypeFunctionsBody

Properties

NameTypeDescriptionNotes
itemsList[DataTypeFunctionEntry]The page of matching functions, in ascending function ID order. Empty when no function uses the type.
next_after_function_idintPass 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)

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