Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

DependentFlag

Properties

Name Type Description Notes
name str The flag name [optional]
key str The flag key
links Dict[str, Link] The location and content type of related resources
site Link

Example

from launchdarkly_api.models.dependent_flag import DependentFlag

# TODO update the JSON string below
json = "{}"
# create an instance of DependentFlag from a JSON string
dependent_flag_instance = DependentFlag.from_json(json)
# print the JSON string representation of the object
print(DependentFlag.to_json())

# convert the object into a dict
dependent_flag_dict = dependent_flag_instance.to_dict()
# create an instance of DependentFlag from a dict
dependent_flag_from_dict = DependentFlag.from_dict(dependent_flag_dict)

[Back to Model list] [Back to API list] [Back to README]