Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.22 KB

File metadata and controls

33 lines (25 loc) · 1.22 KB

OrderResponseCustomerInfo

Properties

Name Type Description Notes
object str [optional]
name str [optional]
email str [optional]
phone str [optional]
corporate bool [optional] [default to False]
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_form_dict = order_response_customer_info.from_dict(order_response_customer_info_dict)

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