Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

DependentFlagsByEnvironment

Properties

Name Type Description Notes
items List[DependentFlag] A list of dependent flags, which are flags that use the requested flag as a prerequisite
links Dict[str, Link] The location and content type of related resources
site Link

Example

from launchdarkly_api.models.dependent_flags_by_environment import DependentFlagsByEnvironment

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

# convert the object into a dict
dependent_flags_by_environment_dict = dependent_flags_by_environment_instance.to_dict()
# create an instance of DependentFlagsByEnvironment from a dict
dependent_flags_by_environment_from_dict = DependentFlagsByEnvironment.from_dict(dependent_flags_by_environment_dict)

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