Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.31 KB

File metadata and controls

34 lines (25 loc) · 1.31 KB

FollowFlagMember

Properties

Name Type Description Notes
links Dict[str, Link] 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

Example

from launchdarkly_api.models.follow_flag_member import FollowFlagMember

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

# convert the object into a dict
follow_flag_member_dict = follow_flag_member_instance.to_dict()
# create an instance of FollowFlagMember from a dict
follow_flag_member_from_dict = FollowFlagMember.from_dict(follow_flag_member_dict)

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