fmp 0.2.3

Financial Modeling Prep API Wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub enum FMPPeriod {
    YEAR,
    QUARTER,
}

impl FMPPeriod {
    pub fn value(&self) -> &str {
        match *self {
            FMPPeriod::YEAR => "year",
            FMPPeriod::QUARTER => "quarter",
        }
    }
}