trieve_client/models/get_tracking_chunks_data.rs
1/*
2 * Trieve API
3 *
4 * Trieve OpenAPI Specification. This document describes all of the operations available through the Trieve API.
5 *
6 * The version of the OpenAPI document: 0.11.7
7 * Contact: developers@trieve.ai
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12
13#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
14pub struct GetTrackingChunksData {
15 #[serde(rename = "tracking_ids")]
16 pub tracking_ids: Vec<String>,
17}
18
19impl GetTrackingChunksData {
20 pub fn new(tracking_ids: Vec<String>) -> GetTrackingChunksData {
21 GetTrackingChunksData {
22 tracking_ids,
23 }
24 }
25}
26