Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.29 KB

OrderResponseCustomerInfo.md

File metadata and controls

35 lines (26 loc) · 1.29 KB

OrderResponseCustomerInfo

Properties

Name Type Description Notes
customer_custom_reference str Custom reference [optional]
name str [optional]
email str [optional]
phone str [optional]
corporate bool [optional] [default to False]
object str [optional]
customer_id str [optional]

Example

from conekta.models.order_response_customer_info import OrderResponseCustomerInfo

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

# convert the object into a dict
order_response_customer_info_dict = order_response_customer_info_instance.to_dict()
# create an instance of OrderResponseCustomerInfo from a dict
order_response_customer_info_from_dict = OrderResponseCustomerInfo.from_dict(order_response_customer_info_dict)

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