| Name | Type | Description | Notes |
|---|---|---|---|
| correlation_id | str | This is a GUID (globally unique identifier) that's automatically generated for every request that the webserver receives. | [optional] |
| from_address | GetAllShipmentsDataInnerFromAddress | [optional] | |
| parcel | GetAllShipmentsDataInnerParcel | [optional] | |
| metadata | List[GetAllShipmentsDataInnerMetadataInner] | Additional metadata that needs to be stored for this shipment can be added here. For now, `costAccountName` is supported. | [optional] |
| parcel_tracking_number | str | The Tracking number given to the Parcel for tracking purpose. | [optional] |
| rate | GetAllShipmentsDataInnerRate | [optional] | |
| service | str | [optional] | |
| shipment_id | str | A unique identifier associated with the Shipment. | [optional] |
| status | str | [optional] | |
| to_address | GetAllShipmentsDataInnerToAddress | [optional] |
from shipping.models.get_all_shipments_data_inner import GetAllShipmentsDataInner
# TODO update the JSON string below
json = "{}"
# create an instance of GetAllShipmentsDataInner from a JSON string
get_all_shipments_data_inner_instance = GetAllShipmentsDataInner.from_json(json)
# print the JSON string representation of the object
print(GetAllShipmentsDataInner.to_json())
# convert the object into a dict
get_all_shipments_data_inner_dict = get_all_shipments_data_inner_instance.to_dict()
# create an instance of GetAllShipmentsDataInner from a dict
get_all_shipments_data_inner_from_dict = GetAllShipmentsDataInner.from_dict(get_all_shipments_data_inner_dict)