trieve_client/models/latency_graph_response.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 LatencyGraphResponse {
15 #[serde(rename = "latency_points")]
16 pub latency_points: Vec<models::SearchLatencyGraph>,
17}
18
19impl LatencyGraphResponse {
20 pub fn new(latency_points: Vec<models::SearchLatencyGraph>) -> LatencyGraphResponse {
21 LatencyGraphResponse {
22 latency_points,
23 }
24 }
25}
26