import { NdsFilter } from "./ndsFilter"; /** * No drilling surprise Filter */ export interface NdsFilterRequest { filter?: NdsFilter; /** * Maximum number of rows returned in one request. If there is more data beyond this limit, a cursor will be returned to enable further fetching of data. */ limit?: number; /** * Cursor for pagination returned from a previous request. Apart from cursor and limit, the rest of the request object must be the same as for the original request. */ cursor?: string; }