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

com.sportradar.unifiedodds.sdk.custombetentities.AvailableSelections Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.unifiedodds.sdk.custombetentities;

import com.sportradar.utils.URN;

import java.util.List;

/**
 * Provides an available selections for a particular event
 */
public interface AvailableSelections {

    /**
     * @return the {@link URN} of the event
     */
    URN getEvent();

    /**
     * Returns the list of markets for this event
     *
     * @return the list of markets for this event
     */
    List getMarkets();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy