Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 997 Bytes

File metadata and controls

31 lines (22 loc) · 997 Bytes

Members

Properties

Name Type Description Notes
items List[Member] An array of members
links Dict[str, Link] The location and content type of related resources
total_count int The number of members returned [optional]

Example

from launchdarkly_api.models.members import Members

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

# convert the object into a dict
members_dict = members_instance.to_dict()
# create an instance of Members from a dict
members_from_dict = Members.from_dict(members_dict)

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