Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

BusinessPerspectiveConfig

Properties

Name Type Description Notes
description str [optional]
id str
name str [optional]
tag_filter_expression TagFilterExpressionElement [optional]

Example

from instana_client.models.business_perspective_config import BusinessPerspectiveConfig

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

# convert the object into a dict
business_perspective_config_dict = business_perspective_config_instance.to_dict()
# create an instance of BusinessPerspectiveConfig from a dict
business_perspective_config_from_dict = BusinessPerspectiveConfig.from_dict(business_perspective_config_dict)

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