pub struct CreateWebCallDto {
pub assistant_id: Option<String>,
pub assistant: Option<Box<CreateAssistantDto>>,
pub assistant_overrides: Option<Box<AssistantOverrides>>,
pub squad_id: Option<String>,
pub squad: Option<Box<CreateSquadDto>>,
}Fields§
§assistant_id: Option<String>This is the assistant that will be used for the call. To use a transient assistant, use assistant instead.
assistant: Option<Box<CreateAssistantDto>>This is the assistant that will be used for the call. To use an existing assistant, use assistantId instead.
assistant_overrides: Option<Box<AssistantOverrides>>These are the overrides for the assistant or assistantId’s settings and template variables.
squad_id: Option<String>This is the squad that will be used for the call. To use a transient squad, use squad instead.
squad: Option<Box<CreateSquadDto>>This is a squad that will be used for the call. To use an existing squad, use squadId instead.
Implementations§
Source§impl CreateWebCallDto
impl CreateWebCallDto
pub fn new() -> CreateWebCallDto
Trait Implementations§
Source§impl Clone for CreateWebCallDto
impl Clone for CreateWebCallDto
Source§fn clone(&self) -> CreateWebCallDto
fn clone(&self) -> CreateWebCallDto
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateWebCallDto
impl Debug for CreateWebCallDto
Source§impl Default for CreateWebCallDto
impl Default for CreateWebCallDto
Source§fn default() -> CreateWebCallDto
fn default() -> CreateWebCallDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateWebCallDto
impl<'de> Deserialize<'de> for CreateWebCallDto
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateWebCallDto
impl PartialEq for CreateWebCallDto
Source§impl Serialize for CreateWebCallDto
impl Serialize for CreateWebCallDto
impl StructuralPartialEq for CreateWebCallDto
Auto Trait Implementations§
impl Freeze for CreateWebCallDto
impl RefUnwindSafe for CreateWebCallDto
impl Send for CreateWebCallDto
impl Sync for CreateWebCallDto
impl Unpin for CreateWebCallDto
impl UnwindSafe for CreateWebCallDto
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more