Customer information
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| str | |||
| phone | str | ||
| corporate | bool | [optional] | |
| object | str | [optional] | |
| customer_id | str |
from conekta.models.order_request_customer_info import OrderRequestCustomerInfo
# TODO update the JSON string below
json = "{}"
# create an instance of OrderRequestCustomerInfo from a JSON string
order_request_customer_info_instance = OrderRequestCustomerInfo.from_json(json)
# print the JSON string representation of the object
print(OrderRequestCustomerInfo.to_json())
# convert the object into a dict
order_request_customer_info_dict = order_request_customer_info_instance.to_dict()
# create an instance of OrderRequestCustomerInfo from a dict
order_request_customer_info_from_dict = OrderRequestCustomerInfo.from_dict(order_request_customer_info_dict)