Represents metadata about an activity, typically from an external system.
Activity metadata enables tracking where activities originated from, which is useful for synchronization, deduplication, and linking back to external systems.
const googleCalendarMeta: ActivityMeta = { type: "google-calendar-event", id: "event-123", calendarId: "primary", htmlLink: "https://calendar.google.com/event/123"}; Copy
const googleCalendarMeta: ActivityMeta = { type: "google-calendar-event", id: "event-123", calendarId: "primary", htmlLink: "https://calendar.google.com/event/123"};
Additional source-specific properties
The type identifier for the source system
Represents metadata about an activity, typically from an external system.
Activity metadata enables tracking where activities originated from, which is useful for synchronization, deduplication, and linking back to external systems.
Example