Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

AddUserIdentitiesRequest.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

AddUserIdentitiesRequest

Properties

Name Type Description Notes
new_identifier_verification_record_id str The identifier verification record ID for the new social identity ownership verification.

Example

from py_logto.models.add_user_identities_request import AddUserIdentitiesRequest

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

# convert the object into a dict
add_user_identities_request_dict = add_user_identities_request_instance.to_dict()
# create an instance of AddUserIdentitiesRequest from a dict
add_user_identities_request_from_dict = AddUserIdentitiesRequest.from_dict(add_user_identities_request_dict)

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