pub struct AutomationWorkflowType {
    pub id: String,
    pub create_time: String,
    pub start_time: String,
    pub status: String,
    pub emails_sent: u64,
    pub recipients: RecipientType,
    pub settings: AutomationCampaignSettingsType,
    pub tracking: AutomationTrackingOptionsType,
    pub trigger_settings: AutomationTriggerType,
    pub report_summary: CampaignReportSummaryType,
    pub _links: Vec<LinkType>,
}

Fields

id: String

A string that identifies the Automation.

create_time: String

Desc: The date and time the Automation was created in ISO 8601 format.

start_time: String

Desc: The date and time the Automation was started in ISO 8601 format.

status: String

Desc: The current status of the Automation.

emails_sent: u64

Desc: The total number of emails sent for the Automation.

recipients: RecipientType

Desc: List settings for the Automation.

settings: AutomationCampaignSettingsType

Desc: The settings for the Automation workflow.

tracking: AutomationTrackingOptionsType

Desc: The tracking options for the Automation.

trigger_settings: AutomationTriggerType

Desc: Available triggers for Automation workflows.

report_summary: CampaignReportSummaryType

Desc: A summary of opens, clicks, and unsubscribes for sent campaigns.

_links: Vec<LinkType>

Desc: A list of link types and descriptions for the API schema documents.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.