import { ContainsAllOrAny } from "./containsAllOrAny"; /** * Filter on wells that have wellbores passing through a list of surfaces. */ export interface WellTopFilter { /** * Set to false to filter on wellbores that don\'t pass through the specified surfaces. If no surfaces are specified, only wellbores that aren\'t associated with any surface are returned. */ exists?: boolean; surfaceNames?: ContainsAllOrAny; }