Brief summary of changes made in this config version.
| Name | Type | Description | Notes |
|---|---|---|---|
| author | Author | ||
| change_type | str |
from instana_client.models.change_summary import ChangeSummary
# TODO update the JSON string below
json = "{}"
# create an instance of ChangeSummary from a JSON string
change_summary_instance = ChangeSummary.from_json(json)
# print the JSON string representation of the object
print(ChangeSummary.to_json())
# convert the object into a dict
change_summary_dict = change_summary_instance.to_dict()
# create an instance of ChangeSummary from a dict
change_summary_from_dict = ChangeSummary.from_dict(change_summary_dict)