pub struct CreateOrgDto {
pub hipaa_enabled: Option<bool>,
pub subscription_id: Option<String>,
pub name: Option<String>,
pub channel: Option<ChannelTrue>,
pub billing_limit: Option<f64>,
pub server: Option<Server>,
pub concurrency_limit: Option<f64>,
pub compliance_plan: Option<CompliancePlan>,
}
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<ChannelTrue>
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<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.
compliance_plan: Option<CompliancePlan>
Stores the information about the compliance plan enforced at the organization level. Currently pciEnabled is supported through this field. When this is enabled, any logs, recordings, or transcriptions will be shipped to the customer endpoints if provided else lost. At the end of the call, you will receive an end-of-call-report message to store on your server, if webhook is provided. Defaults to false. When PCI is enabled, only PCI-compliant Providers will be available for LLM, Voice and transcribers. This is due to the compliance requirements of PCI. Other providers may not meet these requirements.
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more