Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.13 KB

CustomerResponse.md

File metadata and controls

47 lines (38 loc) · 2.13 KB

CustomerResponse

customer response

Properties

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]
email 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]

Example

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)

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