diff --git a/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java b/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java index 7698d4a..15c2649 100644 --- a/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java +++ b/src/main/java/com/github/prominence/openweathermap/api/OpenWeatherMapClient.java @@ -107,6 +107,10 @@ public class OpenWeatherMapClient { return new ClimaticForecastRequester(new RequestSettings(apiKey, timeoutSettings)); } + /** + * Solar Radiation API. + * @return requester for retrieving solar radiation information. + */ @SubscriptionAvailability(plans = SPECIAL) public SolarRadiationRequester solarRadiation() { return new SolarRadiationRequester(new RequestSettings(apiKey, timeoutSettings));