| Name | Type | Description | Notes |
|---|---|---|---|
| key | str |
from launchdarkly_api.models.related_ai_config import RelatedAIConfig
# TODO update the JSON string below
json = "{}"
# create an instance of RelatedAIConfig from a JSON string
related_ai_config_instance = RelatedAIConfig.from_json(json)
# print the JSON string representation of the object
print(RelatedAIConfig.to_json())
# convert the object into a dict
related_ai_config_dict = related_ai_config_instance.to_dict()
# create an instance of RelatedAIConfig from a dict
related_ai_config_from_dict = RelatedAIConfig.from_dict(related_ai_config_dict)