Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1012 Bytes

MemoryStatusView.md

File metadata and controls

32 lines (23 loc) · 1012 Bytes

MemoryStatusView

Properties

Name Type Description Notes
id int [readonly]
username str
platform_key str
enabled bool [optional]

Example

from iblai.models.memory_status_view import MemoryStatusView

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

# convert the object into a dict
memory_status_view_dict = memory_status_view_instance.to_dict()
# create an instance of MemoryStatusView from a dict
memory_status_view_from_dict = MemoryStatusView.from_dict(memory_status_view_dict)

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