Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 983 Bytes

MigrationSafetyIssueRep.md

File metadata and controls

24 lines (18 loc) · 983 Bytes

LaunchDarklyApi::MigrationSafetyIssueRep

Properties

Name Type Description Notes
causing_rule_id String The ID of the rule which caused this issue [optional]
affected_rule_ids 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]
issue String A description of the issue that <code>causingRuleId</code> has caused for <code>affectedRuleIds</code>. [optional]
old_system_affected Boolean Whether the changes caused by <code>causingRuleId</code> bring inconsistency to the old system [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MigrationSafetyIssueRep.new(
  causing_rule_id: null,
  affected_rule_ids: null,
  issue: null,
  old_system_affected: null
)