| Name | Type | Description | Notes |
|---|---|---|---|
| custom_rules | List[SyntheticCallRule] | The list of custom rules for synthetic endpoints defined by the user. | |
| default_rules_enabled | bool | A flag to enable/disable the default synthetic endpoint configurations defined by Instana. | [optional] |
from instana_client.models.synthetic_call_config import SyntheticCallConfig
# TODO update the JSON string below
json = "{}"
# create an instance of SyntheticCallConfig from a JSON string
synthetic_call_config_instance = SyntheticCallConfig.from_json(json)
# print the JSON string representation of the object
print(SyntheticCallConfig.to_json())
# convert the object into a dict
synthetic_call_config_dict = synthetic_call_config_instance.to_dict()
# create an instance of SyntheticCallConfig from a dict
synthetic_call_config_from_dict = SyntheticCallConfig.from_dict(synthetic_call_config_dict)