/** * @example * { * slug: "customer", * instance: "cust-12345" * } */ export interface GetContextsRequest { /** The unique slug for the context. */ slug: string; /** The unique identifier for the context instance. */ instance: string; }