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

com.sportradar.unifiedodds.sdk.oddsentities.FixtureChange Maven / Gradle / Ivy

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

package com.sportradar.unifiedodds.sdk.oddsentities;

import com.sportradar.unifiedodds.sdk.entities.SportEvent;

import java.util.Date;

/**
 * Fixture change is sent when some SportRadar system has made a fixture change it deems is
 * important. This is typically changes that affect events in the nearterm (e.g. a match was added
 * that will start in the next few minutes, a match was delayed and starts in a couple of minutes
 * etc etc.).
 */
public interface FixtureChange extends EventMessage {

    FixtureChangeType getChangeType();

    Date getNextLiveTime();

    Date getStartTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy