File

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

Index

Properties

Properties

deviceType
deviceType: string
Type : string

Device type

enteredService
enteredService: Date
Type : Date

Entered service date

langCode
langCode: string
Type : string
Optional

Language code

location
location: ILocation
Type : ILocation
Optional

Device location

name
name: string
Type : string

Device name

registrationKey
registrationKey: string
Type : string

Device key

tags
tags: Array<string>
Type : Array<string>

Device properties

timeZone
timeZone: string
Type : string
Optional

Time zone

import { ILocation } from "./location.interface";

export interface IDevice {

    /**
     * Device name
     * 
     * @type {string}
     */
    name: string;

    /**
     * Device key
     * 
     * @type {string}
     */
    registrationKey: string;

    /**
     * Device type
     * 
     * @type {string}
     */
    deviceType: string;

    /**
     * Entered service date
     * 
     * @type {Date}
     */
    enteredService: Date;

    /**
     * Language code
     * 
     * @type {string}
     */
    langCode?: string;

    /**
     * Time zone
     * 
     * @type {string}
     */
    timeZone?: string;

    /**
     * Device properties
     * 
     * @type {Array<string>}
     */
    tags: Array<string>;

    /**
     * Device location
     * 
     * @type {ILocation}
     */
    location?: ILocation;
}

results matching ""

    No results matching ""