vapi_client/models/
org_plan.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 OrgPlan {
17    #[serde(rename = "includedProviders", skip_serializing_if = "Option::is_none")]
18    pub included_providers: Option<Vec<serde_json::Value>>,
19    #[serde(rename = "includedMinutes", skip_serializing_if = "Option::is_none")]
20    pub included_minutes: Option<f64>,
21    #[serde(
22        rename = "costPerOverageMinute",
23        skip_serializing_if = "Option::is_none"
24    )]
25    pub cost_per_overage_minute: Option<f64>,
26}
27
28impl OrgPlan {
29    pub fn new() -> OrgPlan {
30        OrgPlan {
31            included_providers: None,
32            included_minutes: None,
33            cost_per_overage_minute: None,
34        }
35    }
36}