Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.11 KB

File metadata and controls

40 lines (31 loc) · 2.11 KB

DomesticShipmentResponseV2

Properties

Name Type Description Notes
correlation_id str Key assigned by the shipping system to the transaction. [optional]
shipment_id str The shipmentId, a unique identifier for an individual Shipment. [optional]
parcel_tracking_number str The Tracking number given to the Parcel for tracking purpose. [optional]
label_layout List[DomesticShipmentResponseV2LabelLayoutInner] It defines the layout of the shipping label. [optional]
parcel ParcelV2 [optional]
rate RateResponseV2 [optional]
references ReferenceV2 [optional]
print_status str Status of the Printed Label. [optional]
print_error DomesticShipmentResponseV2PrintError [optional]
from_address FromAddressV2Response [optional]
to_address ToAddressV2Response [optional]
shipment_options ShipmentOptions [optional]

Example

from shipping.models.domestic_shipment_response_v2 import DomesticShipmentResponseV2

# TODO update the JSON string below
json = "{}"
# create an instance of DomesticShipmentResponseV2 from a JSON string
domestic_shipment_response_v2_instance = DomesticShipmentResponseV2.from_json(json)
# print the JSON string representation of the object
print(DomesticShipmentResponseV2.to_json())

# convert the object into a dict
domestic_shipment_response_v2_dict = domestic_shipment_response_v2_instance.to_dict()
# create an instance of DomesticShipmentResponseV2 from a dict
domestic_shipment_response_v2_from_dict = DomesticShipmentResponseV2.from_dict(domestic_shipment_response_v2_dict)

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