import { WellboreSourcesFilter } from "./wellboreSourcesFilter"; /** * Filters to apply in wellbore sources search. */ export interface WellboreSourcesFilterRequest { filter?: WellboreSourcesFilter; /** * 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; }