Skip to content

Files

Latest commit

 

History

History
27 lines (19 loc) · 911 Bytes

IdentityCollection.md

File metadata and controls

27 lines (19 loc) · 911 Bytes

IdentityCollection

Properties

Name Type Description Notes
identities List[Identity]

Example

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)

[API Models][API Endpoints][Back to Repo]