pub struct WorkflowTriggerParameters {
pub trigger_prompt: Option<String>,
pub trigger_message: Option<String>,
pub workflow_id: Option<String>,
}Available on crate feature
voice-ai only.Expand description
WorkflowTriggerParameters from the GoHighLevel OpenAPI spec.
Fields§
§trigger_prompt: Option<String>When to trigger this workflow Required by the API. (Optional here so responses that omit it still parse.)
trigger_message: Option<String>Message to tell the caller Required by the API. (Optional here so responses that omit it still parse.)
workflow_id: Option<String>Workflow ID to trigger Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for WorkflowTriggerParameters
impl Clone for WorkflowTriggerParameters
Source§fn clone(&self) -> WorkflowTriggerParameters
fn clone(&self) -> WorkflowTriggerParameters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowTriggerParameters
impl Debug for WorkflowTriggerParameters
Source§impl Default for WorkflowTriggerParameters
impl Default for WorkflowTriggerParameters
Source§fn default() -> WorkflowTriggerParameters
fn default() -> WorkflowTriggerParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTriggerParameters
impl<'de> Deserialize<'de> for WorkflowTriggerParameters
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
Auto Trait Implementations§
impl Freeze for WorkflowTriggerParameters
impl RefUnwindSafe for WorkflowTriggerParameters
impl Send for WorkflowTriggerParameters
impl Sync for WorkflowTriggerParameters
impl Unpin for WorkflowTriggerParameters
impl UnsafeUnpin for WorkflowTriggerParameters
impl UnwindSafe for WorkflowTriggerParameters
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