vapi_client/models/
ghl_tool_metadata.rs

1/*
2 * Vapi API
3 *
4 * API for building voice assistants
5 *
6 * The version of the OpenAPI document: 1.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct GhlToolMetadata {
17    #[serde(rename = "workflowId", skip_serializing_if = "Option::is_none")]
18    pub workflow_id: Option<String>,
19    #[serde(rename = "locationId", skip_serializing_if = "Option::is_none")]
20    pub location_id: Option<String>,
21}
22
23impl GhlToolMetadata {
24    pub fn new() -> GhlToolMetadata {
25        GhlToolMetadata {
26            workflow_id: None,
27            location_id: None,
28        }
29    }
30}