File

libs/sensorml/src/lib/model/swe/AbstractSWE.ts

Description

Base substitution groups for all SWE Common objects other than value objects

Index

Properties
Methods

Properties

extension
Type : any[]
Decorators :
@DisplayName('Extension')

Extension slot for future extensions to this standard.

id
Type : string
Decorators :
@DisplayName('Id')

Methods

toString
toString()
Returns : string
import { DisplayName } from '../../common/decorators/DisplayName';
/**
 * Base substitution groups for all SWE Common objects other than value objects
 */
export abstract class AbstractSWE {
    @DisplayName('Id')
    id: string;
    /**
     * Extension slot for future extensions to this standard.
     */
    @DisplayName('Extension')
    extension: any[];

    toString(): string {
        return 'Abstract SWE';
    }
}

result-matching ""

    No results matching ""