/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface WorkflowRuleConfigurationAsResponse { /** * The ID of the rule. */ id?: string; /** * The parameters related to the rule. */ parameters?: { [x: string]: string; }; /** * The rule key of the rule. */ ruleKey: string; } //# sourceMappingURL=WorkflowRuleConfigurationAsResponse.d.ts.map