libs/sensorml/src/lib/model/iso/gmd/LegalConstraints.ts
Restrictions and legal prerequisites for accessing and using the dataset.
Properties |
Methods |
accessConstraints |
Type : Restriction[]
|
Decorators :
@DisplayName('Access constraints')
|
otherConstraints |
Type : string[]
|
Decorators :
@DisplayName('Other constraints')
|
useConstraints |
Type : Restriction[]
|
Decorators :
@DisplayName('Use constraints')
|
toString |
toString()
|
Returns :
string
|
import { Restriction } from './Restriction';
import { DisplayName } from '../../../common/decorators/DisplayName';
/**
* Restrictions and legal prerequisites for accessing and using the dataset.
*/
export class LegalConstraints {
@DisplayName('Access constraints')
accessConstraints: Restriction[];
@DisplayName('Use constraints')
useConstraints: Restriction[];
@DisplayName('Other constraints')
otherConstraints: string[];
toString() {
return 'Legal constraints';
}
}