TrieveRubyClient::UpdateChunkGroupData
Properties
| Name |
Type |
Description |
Notes |
| description |
String |
Description to assign to the chunk_group. Convenience field for you to avoid having to remember what the group is for. If not provided, the description will not be updated. |
[optional] |
| group_id |
String |
Id of the chunk_group to update. |
[optional] |
| metadata |
Object |
Optional metadata to assign to the chunk_group. This is a JSON object that can store any additional information you want to associate with the chunks inside of the chunk_group. |
[optional] |
| name |
String |
Name to assign to the chunk_group. Does not need to be unique. If not provided, the name will not be updated. |
[optional] |
| tag_set |
Array<String> |
Optional tags to assign to the chunk_group. This is a list of strings that can be used to categorize the chunks inside the chunk_group. |
[optional] |
| tracking_id |
String |
Tracking Id of the chunk_group to update. |
[optional] |
Example
require 'trieve_ruby_client'
instance = TrieveRubyClient::UpdateChunkGroupData.new(
description: null,
group_id: null,
metadata: null,
name: null,
tag_set: null,
tracking_id: null
)