Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1017 Bytes

File metadata and controls

34 lines (25 loc) · 1017 Bytes

UserIdentity

Properties

Name Type Description Notes
created_at datetime
issuer_url str
subject str
updated_at datetime
user_id int
user_identity_id int

Example

from revengai.models.user_identity import UserIdentity

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

# convert the object into a dict
user_identity_dict = user_identity_instance.to_dict()
# create an instance of UserIdentity from a dict
user_identity_from_dict = UserIdentity.from_dict(user_identity_dict)

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