| Name | Type | Description | Notes |
|---|---|---|---|
| dashboards | List[CustomDashboard] | [optional] | |
| dependencies | List[CustomDependency] | [optional] | |
| identifiers | List[str] | ||
| label | str | ||
| metrics | List[CustomMetric] | [optional] | |
| tag_filter_expression | TagFilterExpressionElement |
from instana_client.models.custom_entity_model import CustomEntityModel
# TODO update the JSON string below
json = "{}"
# create an instance of CustomEntityModel from a JSON string
custom_entity_model_instance = CustomEntityModel.from_json(json)
# print the JSON string representation of the object
print(CustomEntityModel.to_json())
# convert the object into a dict
custom_entity_model_dict = custom_entity_model_instance.to_dict()
# create an instance of CustomEntityModel from a dict
custom_entity_model_from_dict = CustomEntityModel.from_dict(custom_entity_model_dict)