pub struct EmailStatsNumbersDto {
pub delivered: Option<f64>,
pub opened: Option<f64>,
pub clicked: Option<f64>,
pub unsubscribed: Option<f64>,
pub complained: Option<f64>,
pub permanent_fail: Option<f64>,
pub temporary_fail: Option<f64>,
pub rejected: Option<f64>,
pub failed: Option<f64>,
pub replied: Option<f64>,
}emails only.Expand description
EmailStatsNumbersDto from the GoHighLevel OpenAPI spec.
Fields§
§delivered: Option<f64>Emails delivered Required by the API. (Optional here so responses that omit it still parse.)
opened: Option<f64>Emails opened Required by the API. (Optional here so responses that omit it still parse.)
clicked: Option<f64>Links clicked Required by the API. (Optional here so responses that omit it still parse.)
unsubscribed: Option<f64>Unsubscribes Required by the API. (Optional here so responses that omit it still parse.)
complained: Option<f64>Spam complaints Required by the API. (Optional here so responses that omit it still parse.)
permanent_fail: Option<f64>Hard bounces Required by the API. (Optional here so responses that omit it still parse.)
temporary_fail: Option<f64>Soft bounces Required by the API. (Optional here so responses that omit it still parse.)
rejected: Option<f64>Rejected emails Required by the API. (Optional here so responses that omit it still parse.)
failed: Option<f64>Failed emails Required by the API. (Optional here so responses that omit it still parse.)
replied: Option<f64>Replies received Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for EmailStatsNumbersDto
impl Clone for EmailStatsNumbersDto
Source§fn clone(&self) -> EmailStatsNumbersDto
fn clone(&self) -> EmailStatsNumbersDto
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more