/** * This file was auto-generated by Fern from our API Definition. */ /** * The progress of the event within a collection of iterable events */ export interface Progress { /** The current progress of the event */ current?: number; /** The total number of events in this group */ total?: number; /** The percent complete of the event group */ percent?: number; }