Type Alias UpdateGroupByTrackingIDReqPayload

UpdateGroupByTrackingIDReqPayload: {
    description?: string | null;
    metadata?: unknown;
    name?: string | null;
    tag_set?: string[] | null;
    tracking_id: string;
}

Type declaration

  • Optionaldescription?: string | null

    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.

  • Optionalmetadata?: unknown

    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.

  • Optionalname?: string | null

    Name to assign to the chunk_group. Does not need to be unique. If not provided, the name will not be updated.

  • Optionaltag_set?: string[] | null

    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.

  • tracking_id: string

    Tracking Id of the chunk_group to update.