pub struct GhlToolProviderDetails {
pub template_url: Option<String>,
pub setup_instructions: Option<Vec<ToolTemplateSetup>>,
pub type: TypeTrue,
pub workflow_id: Option<String>,
pub workflow_name: Option<String>,
pub webhook_hook_id: Option<String>,
pub webhook_hook_name: Option<String>,
pub location_id: Option<String>,
}
Fields§
§template_url: Option<String>
This is the Template URL or the Snapshot URL corresponding to the Template.
setup_instructions: Option<Vec<ToolTemplateSetup>>
§type: TypeTrue
The type of tool. "ghl" for GHL tool.
workflow_id: Option<String>
§workflow_name: Option<String>
§webhook_hook_id: Option<String>
§webhook_hook_name: Option<String>
§location_id: Option<String>
Implementations§
Source§impl GhlToolProviderDetails
impl GhlToolProviderDetails
pub fn new(type: TypeTrue) -> GhlToolProviderDetails
Trait Implementations§
Source§impl Clone for GhlToolProviderDetails
impl Clone for GhlToolProviderDetails
Source§fn clone(&self) -> GhlToolProviderDetails
fn clone(&self) -> GhlToolProviderDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GhlToolProviderDetails
impl Debug for GhlToolProviderDetails
Source§impl Default for GhlToolProviderDetails
impl Default for GhlToolProviderDetails
Source§fn default() -> GhlToolProviderDetails
fn default() -> GhlToolProviderDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GhlToolProviderDetails
impl<'de> Deserialize<'de> for GhlToolProviderDetails
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 GhlToolProviderDetails
impl PartialEq for GhlToolProviderDetails
Source§impl Serialize for GhlToolProviderDetails
impl Serialize for GhlToolProviderDetails
impl StructuralPartialEq for GhlToolProviderDetails
Auto Trait Implementations§
impl Freeze for GhlToolProviderDetails
impl RefUnwindSafe for GhlToolProviderDetails
impl Send for GhlToolProviderDetails
impl Sync for GhlToolProviderDetails
impl Unpin for GhlToolProviderDetails
impl UnwindSafe for GhlToolProviderDetails
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