Time window of the Maintence Window configuration occurrences.
| Name | Type | Description | Notes |
|---|---|---|---|
| end | int | [optional] | |
| start | int | [optional] |
from instana_client.models.occurrence import Occurrence
# TODO update the JSON string below
json = "{}"
# create an instance of Occurrence from a JSON string
occurrence_instance = Occurrence.from_json(json)
# print the JSON string representation of the object
print(Occurrence.to_json())
# convert the object into a dict
occurrence_dict = occurrence_instance.to_dict()
# create an instance of Occurrence from a dict
occurrence_from_dict = Occurrence.from_dict(occurrence_dict)