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