/** * Simulates when a user presses a `scheduleEvent` button. */ export interface UserButtonPressScheduleEvent { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** ISO 8601 start time. Defaults to the current time. */ eventStartTime?: string; /** ISO 8601 end time. Defaults to one hour after `eventStartTime`. */ eventEndTime?: string; eventTitle?: string; eventDescription?: string; }