ru.blizzed.opensongkick.models.Result 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.models;
import com.google.gson.annotations.SerializedName;
public class Result {
@SerializedName("resultsPage")
private Container container;
public ResultType getContent() {
return container.result.content;
}
private static class Container {
private Status status;
@SerializedName("results")
private Results result;
private static class Results {
@SerializedName(value = "artist", alternate = {"event", "location", "venue"})
ResultType content;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy