pub struct CreateOrgDto {
pub hipaa_enabled: Option<bool>,
pub subscription_id: Option<String>,
pub name: Option<String>,
pub channel: Option<Channel>,
pub billing_limit: Option<f64>,
pub server: Option<Box<Server>>,
pub concurrency_limit: Option<f64>,
}Fields§
§hipaa_enabled: Option<bool>When this is enabled, no logs, recordings, or transcriptions will be stored. At the end of the call, you will still receive an end-of-call-report message to store on your server. Defaults to false. When HIPAA is enabled, only OpenAI/Custom LLM or Azure Providers will be available for LLM and Voice respectively. This is due to the compliance requirements of HIPAA. Other providers may not meet these requirements.
subscription_id: Option<String>This is the ID of the subscription the org belongs to.
name: Option<String>This is the name of the org. This is just for your own reference.
channel: Option<Channel>This is the channel of the org. There is the cluster the API traffic for the org will be directed.
billing_limit: Option<f64>This is the monthly billing limit for the org. To go beyond $1000/mo, please contact us at support@vapi.ai.
server: Option<Box<Server>>This is where Vapi will send webhooks. You can find all webhooks available along with their shape in ServerMessage schema. The order of precedence is: 1. assistant.server 2. phoneNumber.server 3. org.server
concurrency_limit: Option<f64>This is the concurrency limit for the org. This is the maximum number of calls that can be active at any given time. To go beyond 10, please contact us at support@vapi.ai.
Implementations§
Source§impl CreateOrgDto
impl CreateOrgDto
pub fn new() -> CreateOrgDto
Trait Implementations§
Source§impl Clone for CreateOrgDto
impl Clone for CreateOrgDto
Source§fn clone(&self) -> CreateOrgDto
fn clone(&self) -> CreateOrgDto
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more