libs/sensorml/src/lib/model/iso/gmd/Address.ts
Location of the responsible individual or organisation
Properties |
Methods |
administrativeArea |
Type : string
|
Decorators :
@DisplayName('Administrative area')
|
city |
Type : string
|
Decorators :
@DisplayName('City')
|
country |
Type : string
|
Decorators :
@DisplayName('Country')
|
deliveryPoint |
Type : string[]
|
Default value : []
|
Decorators :
@DisplayName('Delivery point')
|
electronicMailAddress |
Type : string[]
|
Default value : []
|
Decorators :
@DisplayName('E-mail')
|
postalCode |
Type : string
|
Decorators :
@DisplayName('Postal code')
|
toString |
toString()
|
Returns :
string
|
import { DisplayName } from '../../../common/decorators/DisplayName';
/**
* Location of the responsible individual or organisation
*/
export class Address {
@DisplayName('Delivery point')
deliveryPoint: string[] = [];
@DisplayName('City')
city: string;
@DisplayName('Administrative area')
administrativeArea: string;
@DisplayName('Postal code')
postalCode: string;
@DisplayName('Country')
country: string;
@DisplayName('E-mail')
electronicMailAddress: string[] = [];
toString() {
return 'Address';
}
}