Skip to main content

windmill_api/models/
search_docs_200_response.rs

1/*
2 * Windmill API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.740.0
7 * Contact: contact@windmill.dev
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SearchDocs200Response {
16    /// Model-ready rendering of the results
17    #[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