Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

GetAllShipments

Properties

Name Type Description Notes
page_info GetAllPickupsPageInfo [optional]
data List[GetAllShipmentsDataInner] [optional]

Example

from shipping.models.get_all_shipments import GetAllShipments

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

# convert the object into a dict
get_all_shipments_dict = get_all_shipments_instance.to_dict()
# create an instance of GetAllShipments from a dict
get_all_shipments_from_dict = GetAllShipments.from_dict(get_all_shipments_dict)

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