Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

OrderCustomerInfoResponse.md

File metadata and controls

34 lines (25 loc) · 1.25 KB

OrderCustomerInfoResponse

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]

Example

from conekta.models.order_customer_info_response import OrderCustomerInfoResponse

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

# convert the object into a dict
order_customer_info_response_dict = order_customer_info_response_instance.to_dict()
# create an instance of OrderCustomerInfoResponse from a dict
order_customer_info_response_from_dict = OrderCustomerInfoResponse.from_dict(order_customer_info_response_dict)

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