import { DistanceRange } from "./distanceRange"; import { DistanceUnit } from "./distanceUnit"; export interface DepthMeasurementDataRequest { sequenceExternalId: string; measuredDepth?: DistanceRange; depthUnit?: DistanceUnit; measurementTypes?: Array; columnExternalIds?: Array; topSurfaceName?: string; /** * 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; }