Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.49 KB

File metadata and controls

29 lines (20 loc) · 1.49 KB

HelloAssoApiV5CommonModelsCartsCheckoutPaymentOptions

Properties

Name Type Description Notes
enable_sepa bool Metadata (optional) Whether if this checkout is eligible for SEPA payment [optional]

Example

from helloasso_python.models.hello_asso_api_v5_common_models_carts_checkout_payment_options import HelloAssoApiV5CommonModelsCartsCheckoutPaymentOptions

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

# convert the object into a dict
hello_asso_api_v5_common_models_carts_checkout_payment_options_dict = hello_asso_api_v5_common_models_carts_checkout_payment_options_instance.to_dict()
# create an instance of HelloAssoApiV5CommonModelsCartsCheckoutPaymentOptions from a dict
hello_asso_api_v5_common_models_carts_checkout_payment_options_from_dict = HelloAssoApiV5CommonModelsCartsCheckoutPaymentOptions.from_dict(hello_asso_api_v5_common_models_carts_checkout_payment_options_dict)

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