Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

DiffResult

Result of comparing manifest to current state.

Properties

Name Type Description Notes
to_create List[DiffItem] Resources in manifest but not in system [optional]
in_system_only List[DiffItem] Resources in system but not in manifest [optional]
differences List[DiffItem] Resources in both with differences [optional]

Example

from mixpeek.models.diff_result import DiffResult

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

# convert the object into a dict
diff_result_dict = diff_result_instance.to_dict()
# create an instance of DiffResult from a dict
diff_result_from_dict = DiffResult.from_dict(diff_result_dict)

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