Trait mailslurp::apis::SentEmailsControllerApi[][src]

pub trait SentEmailsControllerApi {
    fn get_sent_email(
        &self,
        id: &str
    ) -> Box<dyn Future<Item = SentEmailDto, Error = Error<Value>>>;
fn get_sent_emails(
        &self,
        inbox_id: Option<&str>,
        page: Option<i32>,
        size: Option<i32>,
        sort: Option<&str>
    ) -> Box<dyn Future<Item = PageSentEmailProjection, Error = Error<Value>>>;
fn get_sent_organization_emails(
        &self,
        inbox_id: Option<&str>,
        page: Option<i32>,
        size: Option<i32>,
        sort: Option<&str>
    ) -> Box<dyn Future<Item = PageSentEmailProjection, Error = Error<Value>>>; }

Required methods

fn get_sent_email(
    &self,
    id: &str
) -> Box<dyn Future<Item = SentEmailDto, Error = Error<Value>>>
[src]

fn get_sent_emails(
    &self,
    inbox_id: Option<&str>,
    page: Option<i32>,
    size: Option<i32>,
    sort: Option<&str>
) -> Box<dyn Future<Item = PageSentEmailProjection, Error = Error<Value>>>
[src]

fn get_sent_organization_emails(
    &self,
    inbox_id: Option<&str>,
    page: Option<i32>,
    size: Option<i32>,
    sort: Option<&str>
) -> Box<dyn Future<Item = PageSentEmailProjection, Error = Error<Value>>>
[src]

Loading content...

Implementors

impl<C: Connect> SentEmailsControllerApi for SentEmailsControllerApiClient<C>[src]

Loading content...