Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

CreateCheckoutRequest.md

File metadata and controls

30 lines (21 loc) · 1 KB

CreateCheckoutRequest

Properties

Name Type Description Notes
amount_credits int
success_url str

Example

from platform_api_python_client.models.create_checkout_request import CreateCheckoutRequest

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

# convert the object into a dict
create_checkout_request_dict = create_checkout_request_instance.to_dict()
# create an instance of CreateCheckoutRequest from a dict
create_checkout_request_from_dict = CreateCheckoutRequest.from_dict(create_checkout_request_dict)

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