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
The e-mail address of the Google Pay user. This is provided by Google.
google_pay_token
str
The Google Pay token. The encrypted Google Pay token that contains the card information.
Example
fromclientapi_barion.models.start_payment_with_google_tokenimportStartPaymentWithGoogleToken# TODO update the JSON string belowjson="{}"# create an instance of StartPaymentWithGoogleToken from a JSON stringstart_payment_with_google_token_instance=StartPaymentWithGoogleToken.from_json(json)
# print the JSON string representation of the objectprint(StartPaymentWithGoogleToken.to_json())
# convert the object into a dictstart_payment_with_google_token_dict=start_payment_with_google_token_instance.to_dict()
# create an instance of StartPaymentWithGoogleToken from a dictstart_payment_with_google_token_from_dict=StartPaymentWithGoogleToken.from_dict(start_payment_with_google_token_dict)