pub struct UpdateOrgDto {
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<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<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 UpdateOrgDto
impl UpdateOrgDto
pub fn new() -> UpdateOrgDto
Trait Implementations§
Source§impl Clone for UpdateOrgDto
impl Clone for UpdateOrgDto
Source§fn clone(&self) -> UpdateOrgDto
fn clone(&self) -> UpdateOrgDto
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for UpdateOrgDto
impl Debug for UpdateOrgDto
Source§impl Default for UpdateOrgDto
impl Default for UpdateOrgDto
Source§fn default() -> UpdateOrgDto
fn default() -> UpdateOrgDto
Source§impl<'de> Deserialize<'de> for UpdateOrgDto
impl<'de> Deserialize<'de> for UpdateOrgDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl OpenApi for UpdateOrgDto
impl OpenApi for UpdateOrgDto
Source§fn openapi() -> OpenApi
fn openapi() -> OpenApi
openapi::OpenApi instance which can be parsed with serde or served via
OpenAPI visualization tool such as Swagger UI.