/** * Model: SetVariableAction * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ import { VariableData } from '../variable-data'; /** * Sets a variable to a specific value. */ export interface SetVariableAction { /** @see TypeEnum */ type: TypeEnum; variableId: string; /** @see VariableData */ variableValue?: VariableData; } export type TypeEnum = 'SET_VARIABLE'; //# sourceMappingURL=set-variable-action.d.ts.map