Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

GroupScoreChunk.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

GroupScoreChunk

Properties

Name Type Description Notes
group_id str
group_name str [optional]
group_tracking_id str [optional]
metadata List[ScoreChunkDTO]

Example

from trieve_py_client.models.group_score_chunk import GroupScoreChunk

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

# convert the object into a dict
group_score_chunk_dict = group_score_chunk_instance.to_dict()
# create an instance of GroupScoreChunk from a dict
group_score_chunk_form_dict = group_score_chunk.from_dict(group_score_chunk_dict)

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