Name | Type | Description | Notes |
---|---|---|---|
identities | List[Identity] |
from authress.models.identity_collection import IdentityCollection
json = "{}"
# create an instance of IdentityCollection from a JSON string
identity_collection_instance = IdentityCollection.from_json(json)
# print the JSON string representation of the object
print IdentityCollection.to_json()
# convert the object into a dict
identity_collection_dict = identity_collection_instance.to_dict()
# create an instance of IdentityCollection from a dict
identity_collection_from_dict = IdentityCollection.from_dict(identity_collection_dict)