File

libs/sensorml/src/lib/model/iso/gmd/OnlineResource.ts

Description

Information about online sources from which the dataset, specification, or community profile name and extended metadata elements can be obtained.

Index

Properties
Methods

Properties

applicationProfile
Type : string
Decorators :
@DisplayName('Application profile')
description
Type : string
Decorators :
@DisplayName('Description')
function
Type : OnlineFunction
Decorators :
@DisplayName('Function')
linkage
Type : string
Decorators :
@DisplayName('Linkage')
name
Type : string
Decorators :
@DisplayName('Name')
protocol
Type : string
Decorators :
@DisplayName('Protocol')

Methods

toString
toString()
Returns : string
import { OnlineFunction } from './OnlineFunction';
import { DisplayName } from '../../../common/decorators/DisplayName';

/**
 * Information about online sources from which the dataset, specification, or
 * community profile name and extended metadata elements can be obtained.
 */
export class OnlineResource {
    @DisplayName('Linkage')
    linkage: string;

    @DisplayName('Protocol')
    protocol: string;

    @DisplayName('Application profile')
    applicationProfile: string;

    @DisplayName('Name')
    name: string;

    @DisplayName('Description')
    description: string;

    @DisplayName('Function')
    function: OnlineFunction;

    toString() {
        return this.name || 'Online resource';
    }
}

result-matching ""

    No results matching ""