Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1017 Bytes

GetGroupsForChunksData.md

File metadata and controls

29 lines (20 loc) · 1017 Bytes

GetGroupsForChunksData

Properties

Name Type Description Notes
chunk_ids List[str]

Example

from trieve_py_client.models.get_groups_for_chunks_data import GetGroupsForChunksData

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

# convert the object into a dict
get_groups_for_chunks_data_dict = get_groups_for_chunks_data_instance.to_dict()
# create an instance of GetGroupsForChunksData from a dict
get_groups_for_chunks_data_form_dict = get_groups_for_chunks_data.from_dict(get_groups_for_chunks_data_dict)

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