/*! Copyright (c) 2019, XAPPmedia */ import { GoogleActionsV2Device, GoogleActionsV2Location } from "actions-on-google"; /** * Information about the device the user is using * * This extends the Google provided model to include the uniqueDeviceId, which is not documented. * * @see https://developers.google.com/actions/reference/rest/Shared.Types/AppRequest#Device * * @export * @interface Device */ export interface Device extends GoogleActionsV2Device { uniqueDeviceId: string; location?: GoogleActionsV2Location; }