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
Total amount, all taxes included, in cents (required) Must be equal to the sum of the initial amount and subsequent terms
initial_amount
int
The amount for the first term, all taxes included, in cents (required)
item_name
str
Item name (required) A text describing what the user paid for ('Renew license', '3 tickets', donation, etc). Will be displayed in the near future in the user space and in the organization back office
back_url
str
Url followed by the contributor if he wants to return to its previous site
error_url
str
Url called in case of an error during the checkout process
fromhelloasso_python.models.hello_asso_api_v5_models_carts_init_checkout_bodyimportHelloAssoApiV5ModelsCartsInitCheckoutBody# TODO update the JSON string belowjson="{}"# create an instance of HelloAssoApiV5ModelsCartsInitCheckoutBody from a JSON stringhello_asso_api_v5_models_carts_init_checkout_body_instance=HelloAssoApiV5ModelsCartsInitCheckoutBody.from_json(json)
# print the JSON string representation of the objectprint(HelloAssoApiV5ModelsCartsInitCheckoutBody.to_json())
# convert the object into a dicthello_asso_api_v5_models_carts_init_checkout_body_dict=hello_asso_api_v5_models_carts_init_checkout_body_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsCartsInitCheckoutBody from a dicthello_asso_api_v5_models_carts_init_checkout_body_from_dict=HelloAssoApiV5ModelsCartsInitCheckoutBody.from_dict(hello_asso_api_v5_models_carts_init_checkout_body_dict)