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