| Name | Type | Description | Notes |
|---|---|---|---|
| page_info | GetAllPickupsPageInfo | [optional] | |
| data | List[GetAllShipmentsDataInner] | [optional] |
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)