Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

GroupScoreSlimChunks.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

GroupScoreSlimChunks

Properties

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

Example

from trieve_py_client.models.group_score_slim_chunks import GroupScoreSlimChunks

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

# convert the object into a dict
group_score_slim_chunks_dict = group_score_slim_chunks_instance.to_dict()
# create an instance of GroupScoreSlimChunks from a dict
group_score_slim_chunks_form_dict = group_score_slim_chunks.from_dict(group_score_slim_chunks_dict)

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