Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.74 KB

CustomerShippingContactsDataResponse.md

File metadata and controls

39 lines (30 loc) · 1.74 KB

CustomerShippingContactsDataResponse

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]
id str
object str
created_at int

Example

from conekta.models.customer_shipping_contacts_data_response import CustomerShippingContactsDataResponse

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

# convert the object into a dict
customer_shipping_contacts_data_response_dict = customer_shipping_contacts_data_response_instance.to_dict()
# create an instance of CustomerShippingContactsDataResponse from a dict
customer_shipping_contacts_data_response_from_dict = CustomerShippingContactsDataResponse.from_dict(customer_shipping_contacts_data_response_dict)

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