event.js 281 B

12345678910111213
  1. export function Event(params = {}) {
  2. return {
  3. id: '1',
  4. message: 'ApiException',
  5. title: 'ApiException',
  6. groupID: '1',
  7. eventID: '12345678901234567890123456789012',
  8. dateCreated: '2019-05-21T18:01:48.762Z',
  9. tags: [],
  10. errors: [],
  11. ...params,
  12. };
  13. }