Skip to content

Instantly share code, notes, and snippets.

export interface EventData {
id: string;
name: string;
description: string;
/** Event location, set to null if the event is online */
location: EventLocation | null;
hosts: EventHost[];
/** Start time in unix */
startTimestamp: number;
/** End time in unix, if set */
@justin-hackin
justin-hackin / Eventbrite Organizer Events Apify Actor - Dataset Types.ts
Last active June 7, 2025 15:58
Eventbrite Organizer Events Apify Actor - Dataset Types
```
Types for Eventbrite Organizer Events Apify Actor's dataset
```
interface EventbriteDateTime {
utc: string;
date_header: string;
timezone: string;
local: string;
formatted_time: string;