/*! Copyright (c) 2019, XAPPmedia */ /** * A parameter used within query patterns. This is a structured representation of the parameters in the queryPatterns (e.g. $Color:color). * * @see https://developers.google.com/actions/reference/rest/Shared.Types/Action#Parameter * * @export * @interface Parameter */ export interface Parameter { /** * Name of the parameter, e.g. color. * * @type {string} * @memberof Parameter */ name: string; /** * Type of the parameter. Can be a common type or custom type declared as part of the action package, e.g. Color. * * @type {string} * @memberof Parameter */ type: string; }