| Name | Type | Description | Notes |
|---|
| issuer_url | str | Issuer URL (must be trusted by this organisation) | |
| subject | str | External subject identifier from the issuer | |
| user_id | int | Internal user ID to link | |
fromrevengai.models.create_identity_input_bodyimportCreateIdentityInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateIdentityInputBody from a JSON stringcreate_identity_input_body_instance=CreateIdentityInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateIdentityInputBody.to_json())
# convert the object into a dictcreate_identity_input_body_dict=create_identity_input_body_instance.to_dict()
# create an instance of CreateIdentityInputBody from a dictcreate_identity_input_body_from_dict=CreateIdentityInputBody.from_dict(create_identity_input_body_dict)[Back to Model list][Back to API list][Back to README]