Shortcode prefix configuration
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | Whether the shortcode prefix feature is enabled | [optional] |
| prefix | str | The prefix to use for event short codes (e.g., 'INSTANA-', 'PROD-') | [optional] |
from instana_client.models.prefix_object import PrefixObject
# TODO update the JSON string below
json = "{}"
# create an instance of PrefixObject from a JSON string
prefix_object_instance = PrefixObject.from_json(json)
# print the JSON string representation of the object
print(PrefixObject.to_json())
# convert the object into a dict
prefix_object_dict = prefix_object_instance.to_dict()
# create an instance of PrefixObject from a dict
prefix_object_from_dict = PrefixObject.from_dict(prefix_object_dict)