Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.63 KB

File metadata and controls

36 lines (27 loc) · 1.63 KB

LinkSocialAccountRequest

Properties

Name Type Description Notes
callback_url str The URL to redirect to after the user has signed in [optional]
provider str
id_token LinkSocialAccountRequestIdToken [optional]
request_sign_up bool [optional]
scopes List[object] Additional scopes to request from the provider [optional]
error_callback_url str The URL to redirect to if there is an error during the link process [optional]
disable_redirect bool Disable automatic redirection to the provider. Useful for handling the redirection yourself [optional]
additional_data str [optional]

Example

from better_auth.models.link_social_account_request import LinkSocialAccountRequest

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

# convert the object into a dict
link_social_account_request_dict = link_social_account_request_instance.to_dict()
# create an instance of LinkSocialAccountRequest from a dict
link_social_account_request_from_dict = LinkSocialAccountRequest.from_dict(link_social_account_request_dict)

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