import type * as Rulebricks from "../../../../index.js"; /** * @example * { * slug: "customer", * instance: "cust-12345", * body: {} * } */ export interface CascadeContextsRequest { /** The unique slug for the context. */ slug: string; /** The unique identifier for the context instance. */ instance: string; body: Rulebricks.CascadeContextRequest; }