/** * Contains information about the GitX webhooks */ export interface GitXWebhookResponse { connector_ref?: string; /** * @format int64 */ event_trigger_time?: number; folder_paths?: string[]; is_enabled?: boolean; repo_name?: string; repo_url?: string; webhook_identifier?: string; webhook_name?: string; }