Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.58 KB

OrderResponseShippingContact.md

File metadata and controls

39 lines (30 loc) · 1.58 KB

OrderResponseShippingContact

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.order_response_shipping_contact import OrderResponseShippingContact

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

# convert the object into a dict
order_response_shipping_contact_dict = order_response_shipping_contact_instance.to_dict()
# create an instance of OrderResponseShippingContact from a dict
order_response_shipping_contact_from_dict = OrderResponseShippingContact.from_dict(order_response_shipping_contact_dict)

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