Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

CheckoutCustomerFields.md

File metadata and controls

30 lines (21 loc) · 1.23 KB

CheckoutCustomerFields

Properties

Name Type Description Notes
optional List[CheckoutCustomerFieldType] The optional customer fields for the checkout. [optional]
required List[CheckoutCustomerFieldType] The required customer fields for the checkout. [optional]

Example

from openapi_client.models.checkout_customer_fields import CheckoutCustomerFields

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

# convert the object into a dict
checkout_customer_fields_dict = checkout_customer_fields_instance.to_dict()
# create an instance of CheckoutCustomerFields from a dict
checkout_customer_fields_from_dict = CheckoutCustomerFields.from_dict(checkout_customer_fields_dict)

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