Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 930 Bytes

File metadata and controls

31 lines (22 loc) · 930 Bytes

Occurrence

Time window of the Maintence Window configuration occurrences.

Properties

Name Type Description Notes
end int [optional]
start int [optional]

Example

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)

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