windmill_api/models/
get_ai_skill_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct GetAiSkill200Response {
16 #[serde(rename = "name")]
17 pub name: String,
18 #[serde(rename = "description")]
19 pub description: String,
20 #[serde(rename = "instructions")]
21 pub instructions: String,
22}
23
24impl GetAiSkill200Response {
25 pub fn new(name: String, description: String, instructions: String) -> GetAiSkill200Response {
26 GetAiSkill200Response {
27 name,
28 description,
29 instructions,
30 }
31 }
32}
33