/** * Base properties shared by all workflow step types. */ export interface WorkflowStepBase { /** The type of object. In this case, it will always be `"workflow_step"`. */ object: "workflow_step"; /** * **Deprecated:** This ID is not consistent across workflow versions. This field will be removed in a future API version. * * The ID of the workflow step. * * Example: `"step_xKm9pNv3qWsY_jL2tR5Dh"` */ id: string; /** * The name of the workflow step. * * Example: `"Validate Invoice Total"` */ name: string; }