Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.86 KB

File metadata and controls

45 lines (37 loc) · 1.86 KB

CustomerResponse

customer response

Properties

Name Type Description Notes
antifraud_info CustomerAntifraudInfoResponse [optional]
corporate bool [optional]
created_at int
custom_reference str [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
livemode bool
name str [optional]
object str
payment_sources CustomerPaymentMethodsResponse [optional]
phone str [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_form_dict = customer_response.from_dict(customer_response_dict)

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