Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

SyntheticSloEntity

Properties

Name Type Description Notes
include_unscheduled_test_results bool Only includes the scheduled test results. [optional]
synthetic_test_ids List[str] List of Unique Synthetic Tests IDs [optional]

Example

from instana_client.models.synthetic_slo_entity import SyntheticSloEntity

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

# convert the object into a dict
synthetic_slo_entity_dict = synthetic_slo_entity_instance.to_dict()
# create an instance of SyntheticSloEntity from a dict
synthetic_slo_entity_from_dict = SyntheticSloEntity.from_dict(synthetic_slo_entity_dict)

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