Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

EnvironmentSummary

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
key str A project-unique key for the environment
name str A human-friendly name for the environment
color str The color used to indicate this environment in the UI

Example

from launchdarkly_api.models.environment_summary import EnvironmentSummary

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

# convert the object into a dict
environment_summary_dict = environment_summary_instance.to_dict()
# create an instance of EnvironmentSummary from a dict
environment_summary_from_dict = EnvironmentSummary.from_dict(environment_summary_dict)

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