Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.09 KB

ChunkGroup.md

File metadata and controls

37 lines (28 loc) · 1.09 KB

ChunkGroup

Properties

Name Type Description Notes
created_at datetime
dataset_id str
description str
id str
metadata object [optional]
name str
tag_set str [optional]
tracking_id str [optional]
updated_at datetime

Example

from trieve_py_client.models.chunk_group import ChunkGroup

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

# convert the object into a dict
chunk_group_dict = chunk_group_instance.to_dict()
# create an instance of ChunkGroup from a dict
chunk_group_form_dict = chunk_group.from_dict(chunk_group_dict)

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