Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

CustomerResponseShippingContacts.md

File metadata and controls

31 lines (22 loc) · 1.32 KB

CustomerResponseShippingContacts

Properties

Name Type Description Notes
has_more bool Indicates if there are more pages to be requested
object str Object type, in this case is list
data List[CustomerShippingContactsDataResponse] [optional]

Example

from conekta.models.customer_response_shipping_contacts import CustomerResponseShippingContacts

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

# convert the object into a dict
customer_response_shipping_contacts_dict = customer_response_shipping_contacts_instance.to_dict()
# create an instance of CustomerResponseShippingContacts from a dict
customer_response_shipping_contacts_from_dict = CustomerResponseShippingContacts.from_dict(customer_response_shipping_contacts_dict)

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