pub struct LeadCaptureForm {
pub id: String,
pub tenant_id: String,
pub name: String,
pub slug: String,
pub whatsapp_account_id: String,
pub reply_mode: AutoReplyMode,
pub reply_prompt: String,
pub style: LeadFormStyle,
pub allowed_origins: Vec<String>,
pub enabled: bool,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§tenant_id: String§name: String§slug: String§whatsapp_account_id: String§reply_mode: AutoReplyMode§reply_prompt: String§style: LeadFormStyle§allowed_origins: Vec<String>§enabled: bool§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for LeadCaptureForm
impl Clone for LeadCaptureForm
Source§fn clone(&self) -> LeadCaptureForm
fn clone(&self) -> LeadCaptureForm
Returns a duplicate 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 LeadCaptureForm
impl Debug for LeadCaptureForm
Source§impl<'de> Deserialize<'de> for LeadCaptureForm
impl<'de> Deserialize<'de> for LeadCaptureForm
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 LeadCaptureForm
impl RefUnwindSafe for LeadCaptureForm
impl Send for LeadCaptureForm
impl Sync for LeadCaptureForm
impl Unpin for LeadCaptureForm
impl UnwindSafe for LeadCaptureForm
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