Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

AdvancedCustomBlueprintIndicator

Properties

Name Type Description Notes
bad_events AdvancedFilter [optional]
good_events AdvancedFilter

Example

from instana_client.models.advanced_custom_blueprint_indicator import AdvancedCustomBlueprintIndicator

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

# convert the object into a dict
advanced_custom_blueprint_indicator_dict = advanced_custom_blueprint_indicator_instance.to_dict()
# create an instance of AdvancedCustomBlueprintIndicator from a dict
advanced_custom_blueprint_indicator_from_dict = AdvancedCustomBlueprintIndicator.from_dict(advanced_custom_blueprint_indicator_dict)

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