File

libs/core/src/lib/api-communication/connectors/sta-api-v1-connector/model/features-of-interest.ts

Extends

StaObject

Index

Properties

Properties

description
description: string
Type : string
encodingType
encodingType: string
Type : string
feature
feature: GeoJSON.GeometryObject
Type : GeoJSON.GeometryObject
name
name: string
Type : string
import { StaExpandParams, StaObject, StaSelectParams } from './sta-interface';

export interface FeatureOfInterest extends StaObject {
    name?: string;
    description?: string;
    encodingType?: string;
    feature?: GeoJSON.GeometryObject;
    'Observations@iot.navigationLink'?: string;
}

export interface InsertFeatureOfInterest extends StaObject {
    name: string;
    description: string;
    encodingType: string;
    feature: GeoJSON.GeometryObject;
}

export interface FeatureOfInterestSelectParams extends StaSelectParams {
    name?: boolean;
    description?: boolean;
    encodingType?: boolean;
    feature?: boolean;
    Observations?: boolean;
}

export interface FeatureOfInterestExpandParams extends StaExpandParams {
    Observations?: boolean;
}

result-matching ""

    No results matching ""