pub struct WorkflowEmailsType {
pub emails: Vec<WorkflowEmailType>,
pub total_items: u64,
pub _links: Vec<LinkType>,
}
Expand description
Workflow Emails Type
Endpoint GET /automations/{workflow_id}/emails
Fields§
§emails: Vec<WorkflowEmailType>
An array of objects, each representing an email in an Automation workflow.
total_items: u64
Desc: The total number of items matching the query regardless of pagination.
_links: Vec<LinkType>
Desc: A list of link types and descriptions for the API schema documents.
Trait Implementations§
Source§impl Clone for WorkflowEmailsType
impl Clone for WorkflowEmailsType
Source§fn clone(&self) -> WorkflowEmailsType
fn clone(&self) -> WorkflowEmailsType
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 WorkflowEmailsType
impl Debug for WorkflowEmailsType
Source§impl<'de> Deserialize<'de> for WorkflowEmailsType
impl<'de> Deserialize<'de> for WorkflowEmailsType
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 WorkflowEmailsType
impl RefUnwindSafe for WorkflowEmailsType
impl !Send for WorkflowEmailsType
impl !Sync for WorkflowEmailsType
impl Unpin for WorkflowEmailsType
impl UnwindSafe for WorkflowEmailsType
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