/*! Copyright (c) 2019, XAPPmedia */ export type PermissionUnspecified = "UNSPECIFIED_PERMISSION"; export declare const PERMISSION_UNSPECIFIED_PERMISSION: PermissionUnspecified; export type PermissionName = "NAME"; export declare const PERMISSION_NAME: PermissionName; export type PermissionDevicePreciseLocation = "DEVICE_PRECISE_LOCATION"; export declare const PERMISSION_DEVICE_PRECISE_LOCATION: PermissionDevicePreciseLocation; export type PermissionDeviceCourseLocation = "DEVICE_COARSE_LOCATION"; export declare const PERMISSION_DEVICE_COARSE_LOCATION: PermissionDeviceCourseLocation; /** * Possible permissions * * @see https://developers.google.com/actions/reference/rest/Shared.Types/Permission */ export type Permission = PermissionUnspecified | PermissionName | PermissionDeviceCourseLocation | PermissionDeviceCourseLocation;