libs/sensorml/src/lib/model/iso/gmd/Keywords.ts
Properties |
Methods |
keywords |
Type : string[]
|
Default value : []
|
Decorators :
@DisplayName('Keywords')
|
thesaurusName |
Type : Citation
|
Decorators :
@DisplayName('Thesaurus name')
|
type |
Type : KeywordType
|
Decorators :
@DisplayName('Type')
|
toString |
toString()
|
Returns :
string
|
import { Citation } from './Citation';
import { KeywordType } from './KeywordType';
import { DisplayName } from '../../../common/decorators/DisplayName';
export class Keywords {
@DisplayName('Keywords')
keywords: string[] = [];
@DisplayName('Type')
type: KeywordType;
@DisplayName('Thesaurus name')
thesaurusName: Citation;
toString() {
return 'Keywords';
}
}