Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1 KB

File metadata and controls

34 lines (25 loc) · 1 KB

Response1

Properties

Name Type Description Notes
items List[Event] [optional]
var_self str [optional]
next str [optional]
prev str [optional]
last str [optional]
first str [optional]

Example

from wordlift_client.models.response1 import Response1

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

# convert the object into a dict
response1_dict = response1_instance.to_dict()
# create an instance of Response1 from a dict
response1_from_dict = Response1.from_dict(response1_dict)

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