Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 999 Bytes

File metadata and controls

29 lines (20 loc) · 999 Bytes

CreateCheckoutResponse

Properties

Name Type Description Notes
url str

Example

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]