Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 880 Bytes

GetChunksData.md

File metadata and controls

29 lines (20 loc) · 880 Bytes

GetChunksData

Properties

Name Type Description Notes
ids List[str]

Example

from trieve_py_client.models.get_chunks_data import GetChunksData

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

# convert the object into a dict
get_chunks_data_dict = get_chunks_data_instance.to_dict()
# create an instance of GetChunksData from a dict
get_chunks_data_form_dict = get_chunks_data.from_dict(get_chunks_data_dict)

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