import { Identifier } from "./identifier"; /** * Specifies filtering parameters for well tops. */ export interface WellTopsFilter { /** * Limit results to following wellbores. */ wellboreIds: Array; /** * Specifies if the query is to return only definitive or not. If value isn\'t set, all well tops are returned. */ isDefinitive?: boolean; }