Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.07 KB

File metadata and controls

37 lines (28 loc) · 2.07 KB

MultipieceShipment200Response

Properties

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]

Example

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)

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