| Name | Type | Description | Notes |
|---|---|---|---|
| instruction | Dict[str, object] | [optional] | |
| reason | str | Reason why the conflict exists | [optional] |
from launchdarkly_api.models.conflict import Conflict
# TODO update the JSON string below
json = "{}"
# create an instance of Conflict from a JSON string
conflict_instance = Conflict.from_json(json)
# print the JSON string representation of the object
print(Conflict.to_json())
# convert the object into a dict
conflict_dict = conflict_instance.to_dict()
# create an instance of Conflict from a dict
conflict_from_dict = Conflict.from_dict(conflict_dict)