Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 859 Bytes

File metadata and controls

30 lines (21 loc) · 859 Bytes

Neighbors

Properties

Name Type Description Notes
previous str [optional]
next str [optional]

Example

from wordlift_client.models.neighbors import Neighbors

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

# convert the object into a dict
neighbors_dict = neighbors_instance.to_dict()
# create an instance of Neighbors from a dict
neighbors_from_dict = Neighbors.from_dict(neighbors_dict)

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