Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.75 KB

CustomerShippingContacts.md

File metadata and controls

37 lines (28 loc) · 1.75 KB

CustomerShippingContacts

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
parent_id str [optional]
default bool [optional]
deleted bool [optional]
metadata Dict[str, object] Metadata associated with the shipping contact [optional]

Example

from conekta.models.customer_shipping_contacts import CustomerShippingContacts

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

# convert the object into a dict
customer_shipping_contacts_dict = customer_shipping_contacts_instance.to_dict()
# create an instance of CustomerShippingContacts from a dict
customer_shipping_contacts_from_dict = CustomerShippingContacts.from_dict(customer_shipping_contacts_dict)

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