Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

CreateIdentityInputBody

Properties

NameTypeDescriptionNotes
issuer_urlstrIssuer URL (must be trusted by this organisation)
subjectstrExternal subject identifier from the issuer
user_idintInternal user ID to link

Example

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]