| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | A description of the team | [optional] |
| key | str | The team key | [optional] |
| name | str | A human-friendly name for the team | [optional] |
| access | Access | [optional] | |
| creation_date | int | [optional] | |
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
| last_modified | int | [optional] | |
| version | int | The team version | [optional] |
| idp_synced | bool | Whether the team has been synced with an external identity provider (IdP). Team sync is available to customers on an Enterprise plan. | [optional] |
| role_attributes | Dict[str, List[str]] | [optional] | |
| roles | TeamCustomRoles | [optional] | |
| members | TeamMembers | [optional] | |
| projects | TeamProjects | [optional] | |
| maintainers | TeamMaintainers | [optional] |
from launchdarkly_api.models.team import Team
# TODO update the JSON string below
json = "{}"
# create an instance of Team from a JSON string
team_instance = Team.from_json(json)
# print the JSON string representation of the object
print(Team.to_json())
# convert the object into a dict
team_dict = team_instance.to_dict()
# create an instance of Team from a dict
team_from_dict = Team.from_dict(team_dict)