eventAttachment.js 404 B

12345678910111213141516
  1. export function EventAttachment(params = {}) {
  2. return {
  3. id: '1',
  4. name: 'screenshot.png',
  5. headers: {
  6. 'Content-Type': 'image/png',
  7. },
  8. mimetype: 'image/png',
  9. size: 84235,
  10. sha1: '986043ce8056f3cde048720d30a3959a6692fbef',
  11. dateCreated: '2022-09-12T09:27:30.512445Z',
  12. type: 'event.attachment',
  13. event_id: '12345678901234567890123456789012',
  14. ...params,
  15. };
  16. }