vapi_client/models/
ghl_tool_metadata.rs

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