/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * A collection of threads * * @example * { * data: [{ * id: "us_th_123abc", * resourceId: "us_sp_456def", * status: Flatfile.ThreadStatus.Active, * createdAt: "2025-04-01T12:00:00Z", * updatedAt: "2025-04-01T15:30:00Z" * }, { * id: "us_th_789ghi", * resourceId: "us_sp_456def", * status: Flatfile.ThreadStatus.Ready, * createdAt: "2025-04-01T11:00:00Z", * updatedAt: "2025-04-01T11:00:00Z" * }] * } */ export interface ThreadCollection { data: Flatfile.ThreadModel[]; }