com.tecacet.finance.services.holiday.CountryHolidays Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfapi Show documentation
Show all versions of jfapi Show documentation
JFApi connects to various Web Services that provide financial data such as stock prices,
splits, dividends, and FX rates.
package com.tecacet.finance.services.holiday;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import java.util.List;
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class CountryHolidays {
private String countryCode;
private String countryFullName;
private List holidayName;
public String getCountryCode() {
return countryCode;
}
public String getCountryName() {
return countryFullName;
}
public List getHolidays() {
return holidayName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy