langgraph_api/generated/models/
config_3.rs

1/*
2 * LangSmith Deployment
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 0.1.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// Config3 : The configuration for the assistant.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct Config3 {
17    #[serde(rename = "tags", skip_serializing_if = "Option::is_none")]
18    pub tags: Option<Vec<String>>,
19    #[serde(rename = "recursion_limit", skip_serializing_if = "Option::is_none")]
20    pub recursion_limit: Option<i32>,
21    #[serde(rename = "configurable", skip_serializing_if = "Option::is_none")]
22    pub configurable: Option<serde_json::Value>,
23}
24
25impl Config3 {
26    /// The configuration for the assistant.
27    pub fn new() -> Config3 {
28        Config3 {
29            tags: None,
30            recursion_limit: None,
31            configurable: None,
32        }
33    }
34}