Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

File metadata and controls

29 lines (20 loc) · 944 Bytes

TokenCheckout

Properties

Name Type Description Notes
returns_control_on str It is a value that allows identifying the returns control on. [optional]

Example

from conekta.models.token_checkout import TokenCheckout

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

# convert the object into a dict
token_checkout_dict = token_checkout_instance.to_dict()
# create an instance of TokenCheckout from a dict
token_checkout_from_dict = TokenCheckout.from_dict(token_checkout_dict)

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