windmill_api/models/
search_docs_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SearchDocs200Response {
16 #[serde(rename = "text")]
18 pub text: String,
19 #[serde(rename = "results")]
20 pub results: Vec<models::SearchDocs200ResponseResultsInner>,
21}
22
23impl SearchDocs200Response {
24 pub fn new(text: String, results: Vec<models::SearchDocs200ResponseResultsInner>) -> SearchDocs200Response {
25 SearchDocs200Response {
26 text,
27 results,
28 }
29 }
30}
31