projects/reveldigital/player-client/src/lib/interfaces/location.interface.ts
Properties |
address |
address:
|
Type : string
|
Address |
city |
city:
|
Type : string
|
City |
country |
country:
|
Type : string
|
Country |
latitude |
latitude:
|
Type : number
|
Latitude |
longitude |
longitude:
|
Type : number
|
Longitude |
postalCode |
postalCode:
|
Type : string
|
Postal code |
state |
state:
|
Type : string
|
State |
export interface ILocation {
/**
* Latitude
*
* @type {number}
*
* @memberof ILocation
*/
latitude: number;
/**
* Longitude
*
* @type {number}
*
* @memberof ILocation
*/
longitude: number;
/**
* City
*
* @type {string}
*
* @memberof ILocation
*/
city: string;
/**
* State
*
* @type {string}
*
* @memberof ILocation
*/
state: string;
/**
* Address
*
* @type {string}
*
* @memberof ILocation
*/
address: string;
/**
* Country
*
* @type {string}
*
* @memberof ILocation
*/
country: string;
/**
* Postal code
*
* @type {string}
*
* @memberof ILocation
*/
postalCode: string;
}