btcsky_coop_invite_declined_event
When a coop invitation is declined — event entry.
Entry Information
| Property | Value |
|---|---|
| Entry ID | btcsky_coop_invite_declined_event |
| Type | Event |
| Color | Red |
| Icon | fa6-solid:user-xmark |
Description
Event that fires when a coop invitation is sent. / @Tags("btcsky", "event") @Entry("btcsky_coop_invite_sent_event", "When a coop invitation is sent", Colors.PURPLE, "fa6-solid:paper-plane") class CoopInviteSentEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a coop invitation is accepted. / @Tags("btcsky", "event") @Entry("btcsky_coop_invite_accepted_event", "When a coop invitation is accepted", Colors.GREEN, "fa6-solid:handshake") class CoopInviteAcceptedEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a coop invitation is declined.