import type * as Extend from "../index"; export interface SplitterVersion { /** The type of object. Will always be `"splitter_version"`. */ object: "splitter_version"; /** * The unique identifier for this version of the splitter. * * Example: `"splv_xK9mLPqRtN3vS8wF5hB2cQ"` */ id: string; /** * A description of this version of the splitter. * * Example: `"Updated split rules for multi-invoice packets"` */ description: string | null; /** * The version number or identifier for this specific version of the splitter. The draft version will have version="draft". * * Examples: `"1.0"`, `"2.1"`, `"draft"` */ version: string; /** The configuration settings for this version of the splitter. */ config: Extend.SplitConfig; /** * The ID of the splitter that this version belongs to. * * Example: `"spl_Xj8mK2pL9nR4vT7qY5wZ"` */ splitterId: string; createdAt: Extend.CreatedAt; }