Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 962 Bytes

ListItemsOutput.md

File metadata and controls

30 lines (21 loc) · 962 Bytes

ListItemsOutput

Properties

Name Type Description Notes
items List[Item] [optional]
next_page str [optional]

Example

from akeyless.models.list_items_output import ListItemsOutput

# TODO update the JSON string below
json = "{}"
# create an instance of ListItemsOutput from a JSON string
list_items_output_instance = ListItemsOutput.from_json(json)
# print the JSON string representation of the object
print(ListItemsOutput.to_json())

# convert the object into a dict
list_items_output_dict = list_items_output_instance.to_dict()
# create an instance of ListItemsOutput from a dict
list_items_output_from_dict = ListItemsOutput.from_dict(list_items_output_dict)

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