/*! Copyright (c) 2019, XAPPmedia */ /** * Contains the user's personal information. * * All require the NAME permission to be granted by the user. * * @see https://developers.google.com/actions/reference/rest/Shared.Types/AppRequest#UserProfile * * @export * @interface Profile */ export interface Profile { email?: string; displayName?: string; givenName?: string; familyName?: string; }