| Name |
Type |
Description |
Notes |
| url |
str |
|
|
from platform_api_python_client.models.create_checkout_response import CreateCheckoutResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCheckoutResponse from a JSON string
create_checkout_response_instance = CreateCheckoutResponse.from_json(json)
# print the JSON string representation of the object
print(CreateCheckoutResponse.to_json())
# convert the object into a dict
create_checkout_response_dict = create_checkout_response_instance.to_dict()
# create an instance of CreateCheckoutResponse from a dict
create_checkout_response_from_dict = CreateCheckoutResponse.from_dict(create_checkout_response_dict)
[Back to Model list] [Back to API list] [Back to README]