| Name |
Type |
Description |
Notes |
| causingRuleId |
string |
The ID of the rule which caused this issue |
[optional] [default to undefined] |
| affectedRuleIds |
Array<string> |
A list of the IDs of the rules which are affected by this issue. <code>fallthrough</code> is a sentinel value for the default rule. |
[optional] [default to undefined] |
| issue |
string |
A description of the issue that <code>causingRuleId</code> has caused for <code>affectedRuleIds</code>. |
[optional] [default to undefined] |
| oldSystemAffected |
boolean |
Whether the changes caused by <code>causingRuleId</code> bring inconsistency to the old system |
[optional] [default to undefined] |
import { MigrationSafetyIssueRep } from 'launchdarkly-api-typescript';
const instance: MigrationSafetyIssueRep = {
causingRuleId,
affectedRuleIds,
issue,
oldSystemAffected,
};
[Back to Model list] [Back to API list] [Back to README]