libs/sensorml/src/lib/model/iso/gmd/OnlineResource.ts
Information about online sources from which the dataset, specification, or community profile name and extended metadata elements can be obtained.
Properties |
Methods |
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')
|
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';
}
}