| Name |
Type |
Description |
Notes |
| links |
Dict[str, AiConfigsLink] |
The location and content type of related resources |
|
| id |
str |
The member's ID |
|
| first_name |
str |
The member's first name |
[optional] |
| last_name |
str |
The member's last name |
[optional] |
| role |
str |
The member's base role. If the member has no additional roles, this role will be in effect. |
|
| email |
str |
The member's email address |
|
from launchdarkly_api.models.ai_configs_member_summary import AiConfigsMemberSummary
# TODO update the JSON string below
json = "{}"
# create an instance of AiConfigsMemberSummary from a JSON string
ai_configs_member_summary_instance = AiConfigsMemberSummary.from_json(json)
# print the JSON string representation of the object
print(AiConfigsMemberSummary.to_json())
# convert the object into a dict
ai_configs_member_summary_dict = ai_configs_member_summary_instance.to_dict()
# create an instance of AiConfigsMemberSummary from a dict
ai_configs_member_summary_from_dict = AiConfigsMemberSummary.from_dict(ai_configs_member_summary_dict)
[Back to Model list] [Back to API list] [Back to README]