| Name | Type | Description | Notes |
|---|---|---|---|
| correlation_id | str | description | [optional] |
| label_layout | List[MultipieceDomesticShipmentResponseLabelLayoutInner] | description | [optional] |
| from_address | MultipieceDomesticShipmentRequestFromAddress | [optional] | |
| multi_piece_rates | List[MultipieceDomesticShipmentResponseMultiPieceRatesInner] | description | [optional] |
| parcel_tracking_number | str | description | [optional] |
| shipment_id | str | description | [optional] |
| shipment_options | MultipieceDomesticShipmentRequestShipmentOptions | [optional] | |
| to_address | MultipieceDomesticShipmentRequestToAddress | [optional] | |
| customs | MultipieceInternationalShipmentResponseCustoms | [optional] |
from shipping.models.multipiece_shipment200_response import MultipieceShipment200Response
# TODO update the JSON string below
json = "{}"
# create an instance of MultipieceShipment200Response from a JSON string
multipiece_shipment200_response_instance = MultipieceShipment200Response.from_json(json)
# print the JSON string representation of the object
print(MultipieceShipment200Response.to_json())
# convert the object into a dict
multipiece_shipment200_response_dict = multipiece_shipment200_response_instance.to_dict()
# create an instance of MultipieceShipment200Response from a dict
multipiece_shipment200_response_from_dict = MultipieceShipment200Response.from_dict(multipiece_shipment200_response_dict)