customer response
Name | Type | Description | Notes |
---|---|---|---|
antifraud_info | CustomerAntifraudInfoResponse | [optional] | |
corporate | bool | true if the customer is a company | [optional] |
created_at | int | Creation date of the object | |
custom_reference | str | Custom reference | [optional] |
default_fiscal_entity_id | str | [optional] | |
default_shipping_contact_id | str | [optional] | |
default_payment_source_id | str | [optional] | |
str | [optional] | ||
fiscal_entities | CustomerFiscalEntitiesResponse | [optional] | |
id | str | Customer's ID | |
livemode | bool | true if the object exists in live mode or the value false if the object exists in test mode | |
name | str | Customer's name | |
metadata | Dict[str, object] | [optional] | |
object | str | ||
payment_sources | CustomerPaymentMethodsResponse | [optional] | |
phone | str | Customer's phone number | [optional] |
shipping_contacts | CustomerResponseShippingContacts | [optional] | |
subscription | SubscriptionResponse | [optional] |
from conekta.models.customer_response import CustomerResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerResponse from a JSON string
customer_response_instance = CustomerResponse.from_json(json)
# print the JSON string representation of the object
print(CustomerResponse.to_json())
# convert the object into a dict
customer_response_dict = customer_response_instance.to_dict()
# create an instance of CustomerResponse from a dict
customer_response_from_dict = CustomerResponse.from_dict(customer_response_dict)