mailchimp 0.1.15

[Unofficial] Library for the development of applications that require the use of the [Mailchimp](https://developer.mailchimp.com) API, using the Rust programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//! Ping type
//!
use serde::{Deserialize, Serialize};

///
/// A health check for the API that won’t return any account-specific information.
///
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Ping {
    /// This will return a constant string value if the request is successful.
    /// Ex. “Everything’s Chimpy!”
    #[serde(default)]
    health_status: String,
}