/*! Copyright (c) 2019, XAPPmedia */ /** * How to execute an action * * @see https://developers.google.com/actions/reference/rest/Shared.Types/Action#fulfillment * * @export * @interface Fulfillment */ export interface Fulfillment { /** * Execute an action via a conversation fulfillment. * This references the "name" field of Conversations in ActionPackage.conversations field. * * @type {string} * @memberof Fulfillment */ conversationName: string; }