pub enum SendAPIVersion {
V3,
V3_1,
}
impl SendAPIVersion {
pub fn get_api_url(&self) -> String {
match self {
SendAPIVersion::V3 => String::from("https://api.mailjet.com/v3"),
SendAPIVersion::V3_1 => String::from("https://api.mailjet.com/v3.1"),
}
}
}