File

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

Description

Restrictions and legal prerequisites for accessing and using the dataset.

Index

Properties
Methods

Properties

accessConstraints
Type : Restriction[]
Decorators :
@DisplayName('Access constraints')
otherConstraints
Type : string[]
Decorators :
@DisplayName('Other constraints')
useConstraints
Type : Restriction[]
Decorators :
@DisplayName('Use constraints')

Methods

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';
    }
}

result-matching ""

    No results matching ""