Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

CheckoutCardSettings.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

CheckoutCardSettings

The Card settings to be used for the checkout.

Properties

Name Type Description Notes
capture_type PaymentCaptureType [optional]
customer_fields CheckoutCustomerFields [optional]

Example

from openapi_client.models.checkout_card_settings import CheckoutCardSettings

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

# convert the object into a dict
checkout_card_settings_dict = checkout_card_settings_instance.to_dict()
# create an instance of CheckoutCardSettings from a dict
checkout_card_settings_from_dict = CheckoutCardSettings.from_dict(checkout_card_settings_dict)

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