Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Events from the server are packaged in an EventResponse object containing a list of events.

 


Code Block
languagejs
{
	events: [{ 
		type: 'page' | 'project' | 'sessionClosed' |
		      'taskStarted' | 'taskFinished' | null,        // Type of event
	}],
}

 


The events van be of multiple types that can be identified by their type property.

...


The model property contains a page model as specified at REST Page Models V1 page.

SessionClosedEvent

This event is triggered when a Blueriq session has been closed.

...