/*! Copyright (c) 2019, XAPPmedia */ export interface SimpleSSMLResponse { ssml: string; displayText: string; } export interface SimpleTTSResponse { textToSpeech: string; displayText: string; } /** * Simple response. * * @see https://developers.google.com/actions/reference/rest/Shared.Types/AppResponse#SimpleResponse * * @export * @type SimpleResponse */ export type SimpleResponse = SimpleSSMLResponse | SimpleTTSResponse;