1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//! Request and response module for fetching bounces for a domain.
//!
//! ### Example
//!
//! ```no_run
//! # use mailgun_sdk::{
//! #     Client,
//! #     ParamList,
//! #     get_bounces::{GetBouncesParam, GetBouncesParamList},
//! # };
//! # let client = Client::new("", "");
//! let request = GetBouncesParamList::default()
//!     .add(GetBouncesParam::Limit(1));
//!
//! let bounces = client.get_bounces(request).unwrap();
//! ```
//!
//! [API Documentation](https://documentation.mailgun.com/en/latest/api-suppressions.html#bounces)

use crate::{Paging, Param, ParamError, ParamList};

//- Request

/// A parameter for fetching bounces for a domain.
#[derive(Debug)]
pub enum GetBouncesParam {
    /// Maximum number of records to return (default: 100, max: 10000).
    Limit(usize),
}

impl Param for GetBouncesParam {
    fn try_as_tuple(&self) -> Result<(String, String), ParamError> {
        Ok(match self {
            Self::Limit(v) => ("limit".to_string(), v.to_string()),
        })
    }
}

/// List of parameters for fetching bounces for a domain.
#[derive(Debug)]
pub struct GetBouncesParamList {
    pub values: Vec<GetBouncesParam>,
}

impl Default for GetBouncesParamList {
    fn default() -> Self {
        Self {
            values: vec![],
        }
    }
}

impl ParamList for GetBouncesParamList {
    type ParamType = GetBouncesParam;

    fn add(mut self, param: Self::ParamType) -> Self {
        self.values.push(param);

        self
    }
}

//- Response

/// Response returned by get bounces endpoint.
#[derive(Debug, Deserialize, Serialize)]
pub struct GetBouncesResponse {
    pub items: Vec<BounceItem>,
    pub paging: Paging,
}

/// A single item found in [`GetBouncesResponse`](struct.GetBouncesResponse.html).
#[derive(Debug, Deserialize, Serialize)]
pub struct BounceItem {
    pub address: String,
    pub code: String,
    pub error: String,
    pub created_at: String,
}