/*! Copyright (c) 2019, XAPPmedia */ import { Permission } from "./Permission"; import { Profile } from "./Profile"; /** * Information about the user. * * Locale information follows IETF BCP-47 language code. * * A user id of "WfksXGpv0Hbz8ZcZ0eW7OW30SqYVFnXaHEwxkmS4BK4=" is the Google Crawler * that checks on the status of the action. * * @see https://developers.google.com/actions/reference/rest/Shared.Types/AppRequest#User * * @export * @interface User */ export interface User { accessToken?: string; profile?: Profile; locale: string; userId?: string; permissions?: Permission[]; lastSeen?: string; userVerificationStatus?: "VERIFIED" | "GUEST"; userStorage?: string; }