package net.knarcraft.playerpayouts.config.payout; import org.jetbrains.annotations.NotNull; /** * Instantiates a new payout action * * @param component1

The component "to the left of" the delimiter

* @param delimiter

The delimiter between the two components

* @param component2

The component "to the right of" the delimiter

*/ public record PayoutAction(@NotNull PayoutComponent component1, @NotNull PayoutDelimiter delimiter, @NotNull PayoutComponent component2) implements PayoutComponent { }