UNPKG

netatmo-nodejs-api

Version:
106 lines (94 loc) 2.18 kB
/* tslint:disable */ /* eslint-disable */ /** * Legrand - Netatmo - BTicino, Home + Security * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 1.1.2 * Contact: contact-api@netatmo.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { Snapshot } from './snapshot'; /** * * * @export * @interface EventUnknownPerson */ export interface EventUnknownPerson { /** * id of the event * * @type {string} * @memberof EventUnknownPerson * @example 5715e3bf2baxxxx00000xxxx00000 */ id?: string; /** * type of the event * * @type {string} * @memberof EventUnknownPerson * @example person */ type?: string; /** * time of occurence of the event * * @type {number} * @memberof EventUnknownPerson * @example 1461052342 */ time?: number; /** * id of the camera that detected the event * * @type {string} * @memberof EventUnknownPerson * @example 70:ee:50:xx:xx:xx */ cameraId?: string; /** * id of the device that detected the event * * @type {string} * @memberof EventUnknownPerson * @example 70:ee:50:xx:xx:xx */ deviceId?: string; /** * id of the person the event is about * * @type {string} * @memberof EventUnknownPerson * @example a9552acd-d980-xxxx00000xxxx00000 */ personId?: string; /** * @type {Snapshot} * @memberof EventUnknownPerson */ snapshot?: Snapshot; /** * @type {string} * @memberof EventUnknownPerson * @example <b>Visage inconnu</b> a été vu(e) */ message?: string; /** * @type {string} * @memberof EventUnknownPerson */ videoId?: string; /** * status of the video (recording, deleted or available) * * @type {string} * @memberof EventUnknownPerson * @example available */ videoStatus?: string; }