All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.blizzed.opensongkick.models.Result Maven / Gradle / Ivy

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