organizationEvent.js 314 B

1234567891011121314
  1. export function OrganizationEvent(params = {}) {
  2. return {
  3. projectID: '2',
  4. eventID: '12345678901234567890123456789012',
  5. message: 'ApiException',
  6. dateCreated: '2018-10-02T19:45:36+00:00',
  7. user: {
  8. email: 'billy@sentry.io',
  9. id: '1',
  10. username: null,
  11. },
  12. ...params,
  13. };
  14. }