You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Google ID token, which the client obtains from the One Tap API
Example
frombetter_auth.models.one_tap_callback_post_requestimportOneTapCallbackPostRequest# TODO update the JSON string belowjson="{}"# create an instance of OneTapCallbackPostRequest from a JSON stringone_tap_callback_post_request_instance=OneTapCallbackPostRequest.from_json(json)
# print the JSON string representation of the objectprint(OneTapCallbackPostRequest.to_json())
# convert the object into a dictone_tap_callback_post_request_dict=one_tap_callback_post_request_instance.to_dict()
# create an instance of OneTapCallbackPostRequest from a dictone_tap_callback_post_request_from_dict=OneTapCallbackPostRequest.from_dict(one_tap_callback_post_request_dict)