The customer information of the payout order.
Name | Type | Description | Notes |
---|---|---|---|
customer_custom_reference | str | Custom reference | [optional] |
name | str | [optional] | |
str | [optional] | ||
phone | str | [optional] | |
corporate | bool | [optional] [default to False] | |
object | str | [optional] | |
id | str | The id of the customer. |
from conekta.models.payout_order_response_customer_info import PayoutOrderResponseCustomerInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PayoutOrderResponseCustomerInfo from a JSON string
payout_order_response_customer_info_instance = PayoutOrderResponseCustomerInfo.from_json(json)
# print the JSON string representation of the object
print(PayoutOrderResponseCustomerInfo.to_json())
# convert the object into a dict
payout_order_response_customer_info_dict = payout_order_response_customer_info_instance.to_dict()
# create an instance of PayoutOrderResponseCustomerInfo from a dict
payout_order_response_customer_info_from_dict = PayoutOrderResponseCustomerInfo.from_dict(payout_order_response_customer_info_dict)