Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 911 Bytes

ActivityAPI.md

File metadata and controls

30 lines (21 loc) · 911 Bytes

ActivityAPI

Properties

Name Type Description Notes
data List[ActivityData] [optional]
total int Total rows

Example

from iblai.models.activity_api import ActivityAPI

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

# convert the object into a dict
activity_api_dict = activity_api_instance.to_dict()
# create an instance of ActivityAPI from a dict
activity_api_from_dict = ActivityAPI.from_dict(activity_api_dict)

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