Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 954 Bytes

File metadata and controls

31 lines (22 loc) · 954 Bytes

Projects

Properties

Name Type Description Notes
links Dict[str, Link] A link to this resource.
items List[Project] List of projects.
total_count int [optional]

Example

from launchdarkly_api.models.projects import Projects

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

# convert the object into a dict
projects_dict = projects_instance.to_dict()
# create an instance of Projects from a dict
projects_from_dict = Projects.from_dict(projects_dict)

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