File

projects/reveldigital/player-client/src/lib/interfaces/location.interface.ts

Index

Properties

Properties

address
address: string
Type : string

Address

city
city: string
Type : string

City

country
country: string
Type : string

Country

latitude
latitude: number
Type : number

Latitude

longitude
longitude: number
Type : number

Longitude

postalCode
postalCode: string
Type : string

Postal code

state
state: string
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;
}

results matching ""

    No results matching ""