import type * as Extend from "../index"; export interface Splitter { /** 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; /** The draft version of the splitter. This is the editable version in the Extend dashboard. */ draftVersion: Extend.SplitterVersion; }