import type * as Extend from "../index"; export interface SplitterSummary { /** The type of object. Will always be `"splitter"`. */ object: "splitter"; /** * The ID of the splitter. * * Example: `"spl_Xj8mK2pL9nR4vT7qY5wZ"` */ id: string; /** * The name of the splitter. * * Example: `"Invoice Packet Splitter"` */ name: string; createdAt: Extend.CreatedAt; updatedAt: Extend.UpdatedAt; }