langgraph_api/generated/models/run_create_stateful_assistant_id.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/// RunCreateStatefulAssistantId : The assistant ID or graph name to run. If using graph name, will default to first assistant created from that graph.
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct RunCreateStatefulAssistantId {}
17
18impl RunCreateStatefulAssistantId {
19 /// The assistant ID or graph name to run. If using graph name, will default to first assistant created from that graph.
20 pub fn new() -> RunCreateStatefulAssistantId {
21 RunCreateStatefulAssistantId {}
22 }
23}