Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.74 KB

File metadata and controls

36 lines (27 loc) · 1.74 KB

CustomerUpdateShippingContacts

Shipping details, required in case of sending a shipping. If we do not receive a shipping_contact on the order, the default shipping_contact of the customer will be used.

Properties

Name Type Description Notes
phone str Phone contact [optional]
receiver str Name of the person who will receive the order [optional]
between_streets str The street names between which the order will be delivered. [optional]
address CustomerShippingContactsAddress [optional]
parent_id str [optional]
default bool [optional]
deleted bool [optional]

Example

from conekta.models.customer_update_shipping_contacts import CustomerUpdateShippingContacts

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

# convert the object into a dict
customer_update_shipping_contacts_dict = customer_update_shipping_contacts_instance.to_dict()
# create an instance of CustomerUpdateShippingContacts from a dict
customer_update_shipping_contacts_from_dict = CustomerUpdateShippingContacts.from_dict(customer_update_shipping_contacts_dict)

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