/*
* Vapi API
*
* Voice AI for developers.
*
* The version of the OpenAPI document: 1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct VariableExtractionPlan {
/// This is the schema of parameters we want to extract from the response
#[serde(rename = "schema", skip_serializing_if = "Option::is_none")]
pub schema: Option<models::JsonSchema>,
}
impl VariableExtractionPlan {
pub fn new() -> VariableExtractionPlan {
VariableExtractionPlan { schema: None }
}
}