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

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

Example

from revengai.models.create_identity_input_body import CreateIdentityInputBody

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

# convert the object into a dict
create_identity_input_body_dict = create_identity_input_body_instance.to_dict()
# create an instance of CreateIdentityInputBody from a dict
create_identity_input_body_from_dict = CreateIdentityInputBody.from_dict(create_identity_input_body_dict)

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