Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

Environments

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources [optional]
total_count int The number of environments returned [optional]
items List[Environment] An array of environments

Example

from launchdarkly_api.models.environments import Environments

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

# convert the object into a dict
environments_dict = environments_instance.to_dict()
# create an instance of Environments from a dict
environments_from_dict = Environments.from_dict(environments_dict)

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