|
| 1 | +package me.limeglass.streamelements.api.events; |
| 2 | + |
| 3 | +import java.time.Instant; |
| 4 | + |
| 5 | +import me.limeglass.streamelements.api.objects.Channel; |
| 6 | +import me.limeglass.streamelements.api.objects.User; |
| 7 | + |
| 8 | +public class SubscriberEvent extends ActivityEvent { |
| 9 | + |
| 10 | + private final User user, sender; |
| 11 | + private final String message; |
| 12 | + private final boolean gifted; |
| 13 | + private final Number amount; |
| 14 | + private final long tier; |
| 15 | + |
| 16 | + /** |
| 17 | + * Called when someone subscribes. |
| 18 | + */ |
| 19 | + public SubscriberEvent(String type, Instant instant, String provider, Channel channel, Number amount, long tier, boolean gifted, User sender, String message, User user) { |
| 20 | + super(type, instant, provider, channel); |
| 21 | + this.message = message; |
| 22 | + this.amount = amount; |
| 23 | + this.gifted = gifted; |
| 24 | + this.sender = sender; |
| 25 | + this.user = user; |
| 26 | + this.tier = tier; |
| 27 | + } |
| 28 | + |
| 29 | + /** |
| 30 | + * @return The message used in the subscription. |
| 31 | + */ |
| 32 | + public String getMessage() { |
| 33 | + return message; |
| 34 | + } |
| 35 | + |
| 36 | + /** |
| 37 | + * @return If the subscription was gifted. |
| 38 | + */ |
| 39 | + public boolean isGifted() { |
| 40 | + return gifted; |
| 41 | + } |
| 42 | + |
| 43 | + /** |
| 44 | + * @return The User that received the subscription. |
| 45 | + */ |
| 46 | + public User getReceiver() { |
| 47 | + return user; |
| 48 | + } |
| 49 | + |
| 50 | + /** |
| 51 | + * @return The amount of subscriptions, if it was a multiple gifted subscription it would be more. |
| 52 | + */ |
| 53 | + public Number getAmount() { |
| 54 | + return amount; |
| 55 | + } |
| 56 | + |
| 57 | + /** |
| 58 | + * @return The sender that send the possible gifted subscription. |
| 59 | + */ |
| 60 | + public User getSender() { |
| 61 | + return sender; |
| 62 | + } |
| 63 | + |
| 64 | + /** |
| 65 | + * @return The tier of the subscription. |
| 66 | + */ |
| 67 | + public long getTier() { |
| 68 | + return tier; |
| 69 | + } |
| 70 | + |
| 71 | +} |
0 commit comments