Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 514 Bytes

setInfo.md

File metadata and controls

28 lines (23 loc) · 514 Bytes

setInfo

Get information about events

Call of method

moduleDispatcher - method of event management.
moduleDispatcher switches to the selected method setInfo and transmits necessary data to that.

For example:

moduleDispatcher('setInfo',{cuid: '123446', events: ['1234', '1323']})

Typical data

SetInfoData {   
  cuid: string   
  events: string[]   
}

Example of data

data = {   
  cuid: '123446',   
  events: ['1234', '1323']  
}