You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromlaunchdarkly_api.models.sdk_keys_environment_summaryimportSdkKeysEnvironmentSummary# TODO update the JSON string belowjson="{}"# create an instance of SdkKeysEnvironmentSummary from a JSON stringsdk_keys_environment_summary_instance=SdkKeysEnvironmentSummary.from_json(json)
# print the JSON string representation of the objectprint(SdkKeysEnvironmentSummary.to_json())
# convert the object into a dictsdk_keys_environment_summary_dict=sdk_keys_environment_summary_instance.to_dict()
# create an instance of SdkKeysEnvironmentSummary from a dictsdk_keys_environment_summary_from_dict=SdkKeysEnvironmentSummary.from_dict(sdk_keys_environment_summary_dict)