Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.56 KB

File metadata and controls

32 lines (23 loc) · 1.56 KB

MigrationSafetyIssueRep

Properties

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

Example

from launchdarkly_api.models.migration_safety_issue_rep import MigrationSafetyIssueRep

# TODO update the JSON string below
json = "{}"
# create an instance of MigrationSafetyIssueRep from a JSON string
migration_safety_issue_rep_instance = MigrationSafetyIssueRep.from_json(json)
# print the JSON string representation of the object
print(MigrationSafetyIssueRep.to_json())

# convert the object into a dict
migration_safety_issue_rep_dict = migration_safety_issue_rep_instance.to_dict()
# create an instance of MigrationSafetyIssueRep from a dict
migration_safety_issue_rep_from_dict = MigrationSafetyIssueRep.from_dict(migration_safety_issue_rep_dict)

[Back to Model list] [Back to API list] [Back to README]