This commit is contained in:
parent
fe48cac2c0
commit
bdf0c56990
|
@ -28,6 +28,11 @@ public abstract class WorkspaceEvent {
|
||||||
@JsonProperty("idsToNotify")
|
@JsonProperty("idsToNotify")
|
||||||
@NotNull(message="recipients cannot be missing, use usernames or contexts")
|
@NotNull(message="recipients cannot be missing, use usernames or contexts")
|
||||||
protected String[] idsToNotify;
|
protected String[] idsToNotify;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* optional, set to true if the idsToNotify are contexts, default is false
|
||||||
|
*/
|
||||||
|
@JsonProperty("idsAsGroup")
|
||||||
protected boolean idsAsGroup = false;
|
protected boolean idsAsGroup = false;
|
||||||
|
|
||||||
WorkspaceEvent(WorkspaceEventType TYPE) {
|
WorkspaceEvent(WorkspaceEventType TYPE) {
|
||||||
|
|
Loading…
Reference in New Issue