Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

ClientCollection

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
items List[Client] List of client objects

Example

from launchdarkly_api.models.client_collection import ClientCollection

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

# convert the object into a dict
client_collection_dict = client_collection_instance.to_dict()
# create an instance of ClientCollection from a dict
client_collection_from_dict = ClientCollection.from_dict(client_collection_dict)

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