Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

ListSegmentsResponse

Properties

Name Type Description Notes
items List[SegmentResponse]
total int
next_cursor str [optional]

Example

from wordlift_client.models.list_segments_response import ListSegmentsResponse

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

# convert the object into a dict
list_segments_response_dict = list_segments_response_instance.to_dict()
# create an instance of ListSegmentsResponse from a dict
list_segments_response_from_dict = ListSegmentsResponse.from_dict(list_segments_response_dict)

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