import { Well } from "./well"; export interface WellItems { items: Array; /** * Number of wells that matches the query. This is only set if `aggregates` in the request body contains `\"count\"`. */ wellsCount?: number; /** * Number of wellbores that matches the query. This is only set if `aggregates` in the request body contains `\"count\"`. */ wellboresCount?: number; /** * The cursor to get the next page of results (if available). */ nextCursor?: string; }