This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
Types for Eventbrite Organizer Events Apify Actor's dataset | |
``` | |
interface EventbriteDateTime { | |
utc: string; | |
date_header: string; | |
timezone: string; | |
local: string; | |
formatted_time: string; |