/** * Response after deleting a context. */ export interface DeleteContextResponse { /** Success message. */ message?: string | undefined; /** Slugs of rules that were unbound from the deleted context. */ unbound_rules?: string[] | undefined; /** Slugs of flows that were unbound from the deleted context. */ unbound_flows?: string[] | undefined; /** Number of pending evaluations that were cancelled when the context was deleted. */ pending_evaluations_cancelled?: number | undefined; }