jdash.events.object.AwardedLevelUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdash-events Show documentation
Show all versions of jdash-events Show documentation
Extension of the client module that allows to emit events when changes are detected between the results of
two subsequent requests.
The newest version!
package jdash.events.object;
import jdash.common.entity.GDLevel;
/**
* Event emitted when a change is detected in the data of a level present in the Awarded category.
*
* @param oldData The data of the level before the update.
* @param newData The data of the level after the update.
*/
public record AwardedLevelUpdate(GDLevel oldData, GDLevel newData) {}