Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

SdkKeysEnvironmentSummary

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.sdk_keys_environment_summary import SdkKeysEnvironmentSummary

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

# convert the object into a dict
sdk_keys_environment_summary_dict = sdk_keys_environment_summary_instance.to_dict()
# create an instance of SdkKeysEnvironmentSummary from a dict
sdk_keys_environment_summary_from_dict = SdkKeysEnvironmentSummary.from_dict(sdk_keys_environment_summary_dict)

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