| 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] |
| label_layout | List[DomesticShipmentResponseLabelLayoutInner] | This indicates the label layout and generated label details | [optional] |
| from_address | ReprintShipmentFromAddress | [optional] | |
| parcel | ShipmentDomesticParcel | [optional] | |
| parcel_id | str | >-Parcel Id is optional and would be visible in case when is present in the request. | [optional] |
| parcel_tracking_number | str | The Tracking number given to the Parcel for tracking purpose. | [optional] |
| rate | InternationalShipmentResponseRate | [optional] | |
| shipment_id | str | A unique identifier associated with the Shipment. | [optional] |
| shipment_options | ShipmentOptions | [optional] | |
| to_address | ReprintShipmentToAddress | [optional] | |
| customs | InternationalShipmentResponseCustoms | [optional] |
from shipping.models.create_shipment200_response import CreateShipment200Response
# TODO update the JSON string below
json = "{}"
# create an instance of CreateShipment200Response from a JSON string
create_shipment200_response_instance = CreateShipment200Response.from_json(json)
# print the JSON string representation of the object
print(CreateShipment200Response.to_json())
# convert the object into a dict
create_shipment200_response_dict = create_shipment200_response_instance.to_dict()
# create an instance of CreateShipment200Response from a dict
create_shipment200_response_from_dict = CreateShipment200Response.from_dict(create_shipment200_response_dict)