Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 955 Bytes

Identity.md

File metadata and controls

31 lines (23 loc) · 955 Bytes

Identity

Properties

Name Type Description Notes
principal_name str [optional]
roles List[str] [optional]
attributes List[str] [optional]
credentials List[str] [optional]

Example

from vcell_api_client.models.identity import Identity

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

# convert the object into a dict
identity_dict = identity_instance.to_dict()
# create an instance of Identity from a dict
identity_form_dict = identity.from_dict(identity_dict)

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