libs/sensorml/src/lib/model/iso/gmd/Phone.ts
Telephone numbers for contacting the responsible individual or organisation
Properties |
Methods |
facsimile |
Type : string[]
|
Default value : []
|
Decorators :
@DisplayName('Fax')
|
voice |
Type : string[]
|
Default value : []
|
Decorators :
@DisplayName('Voice')
|
toString |
toString()
|
Returns :
string
|
import { DisplayName } from '../../../common/decorators/DisplayName';
/**
* Telephone numbers for contacting the responsible individual or organisation
*/
export class Phone {
@DisplayName('Voice')
voice: string[] = [];
@DisplayName('Fax')
facsimile: string[] = [];
toString() {
return 'Phone';
}
}