Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1017 Bytes

File metadata and controls

29 lines (20 loc) · 1017 Bytes

ChunksetListResponse

Properties

Name Type Description Notes
items List[ChunksetResponse] [optional]

Example

from wordlift_client.models.chunkset_list_response import ChunksetListResponse

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

# convert the object into a dict
chunkset_list_response_dict = chunkset_list_response_instance.to_dict()
# create an instance of ChunksetListResponse from a dict
chunkset_list_response_from_dict = ChunksetListResponse.from_dict(chunkset_list_response_dict)

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