Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.73 KB

CustomerShippingContactsResponse.md

File metadata and controls

40 lines (31 loc) · 1.73 KB

CustomerShippingContactsResponse

Contains the detail of the shipping addresses that the client has active or has used in Conekta

Properties

Name Type Description Notes
phone str [optional]
receiver str [optional]
between_streets str [optional]
address CustomerShippingContactsResponseAddress [optional]
parent_id str [optional]
default bool [optional]
id str [optional]
created_at int [optional]
metadata Dict[str, object] Metadata associated with the shipping contact [optional]
object str [optional]
deleted bool [optional]

Example

from conekta.models.customer_shipping_contacts_response import CustomerShippingContactsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CustomerShippingContactsResponse from a JSON string
customer_shipping_contacts_response_instance = CustomerShippingContactsResponse.from_json(json)
# print the JSON string representation of the object
print(CustomerShippingContactsResponse.to_json())

# convert the object into a dict
customer_shipping_contacts_response_dict = customer_shipping_contacts_response_instance.to_dict()
# create an instance of CustomerShippingContactsResponse from a dict
customer_shipping_contacts_response_from_dict = CustomerShippingContactsResponse.from_dict(customer_shipping_contacts_response_dict)

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