| Name | Type | Description | Notes |
|---|---|---|---|
| links | Dict[str, Link] | The location and content type of related resources | |
| id | str | The ID of this project | |
| key | str | The key of this project | |
| include_in_snippet_by_default | bool | Whether or not flags created in this project are made available to the client-side JavaScript SDK by default | |
| default_client_side_availability | ClientSideAvailability | [optional] | |
| name | str | A human-friendly name for the project | |
| access | Access | [optional] | |
| tags | List[str] | A list of tags for the project | |
| default_release_pipeline_key | str | The key of the default release pipeline for this project | [optional] |
| environments | Environments | [optional] |
from launchdarkly_api.models.project import Project
# TODO update the JSON string below
json = "{}"
# create an instance of Project from a JSON string
project_instance = Project.from_json(json)
# print the JSON string representation of the object
print(Project.to_json())
# convert the object into a dict
project_dict = project_instance.to_dict()
# create an instance of Project from a dict
project_from_dict = Project.from_dict(project_dict)