import { Identifier } from "./identifier"; /** * Retrieve wells by a given identifier. */ export interface WellByIdsRequest { items: Array; /** * Ignore external ids and matching ids that aren\'t found. */ ignoreUnknownIds?: boolean; /** * Specifies coordinate reference system (CRS) for output coordinates. The `outputCrs` must be on the format `EPSG:####` or `ESRI:####`. If not specified, the CRS will be the one the wells were ingested with. */ outputCrs?: string; }