Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 896 Bytes

File metadata and controls

30 lines (21 loc) · 896 Bytes

Conflict

Properties

Name Type Description Notes
instruction Dict[str, object] [optional]
reason str Reason why the conflict exists [optional]

Example

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)

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