ru.blizzed.opensongkick.methods.calendar.MetroAreaCalendarCaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenSongKick Show documentation
Show all versions of OpenSongKick Show documentation
Simple Java library for non-auth methods of Songkick.com API
The newest version!
package ru.blizzed.opensongkick.methods.calendar;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
import retrofit2.http.QueryMap;
import ru.blizzed.opensongkick.models.Event;
import ru.blizzed.opensongkick.models.ResultsPage;
import java.util.Map;
public interface MetroAreaCalendarCaller {
@GET("metro_areas/{metro_area_id}/calendar.json")
Call> byId(@Path("metro_area_id") String id);
@GET("metro_areas/{metro_area_id}/calendar.json")
Call> byId(@Path("metro_area_id") String id, @QueryMap Map queries);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy