Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

CreateUserIdentityRequest.md

File metadata and controls

30 lines (21 loc) · 1.25 KB

CreateUserIdentityRequest

Properties

Name Type Description Notes
connector_id str The Logto connector ID.
connector_data Dict[str, object] A json object constructed from the url query params returned by the social platform. Typically it contains `code`, `state` and `redirectUri` fields.

Example

from py_logto.models.create_user_identity_request import CreateUserIdentityRequest

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

# convert the object into a dict
create_user_identity_request_dict = create_user_identity_request_instance.to_dict()
# create an instance of CreateUserIdentityRequest from a dict
create_user_identity_request_from_dict = CreateUserIdentityRequest.from_dict(create_user_identity_request_dict)

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