Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.75 KB

File metadata and controls

35 lines (27 loc) · 1.75 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_form_dict = customer_update_shipping_contacts.from_dict(customer_update_shipping_contacts_dict)

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