Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2 KB

File metadata and controls

39 lines (30 loc) · 2 KB

ReprintShipment

Properties

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]
size str This defines the label size of the Shipment, e.g., Shipping Label having Doc Size (8' X 11'). [optional]
type str This defines the type of the Shipment, e.g., Shipping Label. [optional]
format str This defines the type of the shipment which is printed. For example Shipping label prints in PDF form. [optional]
from_address ReprintShipmentFromAddress [optional]
parcel ReprintShipmentParcel [optional]
parcel_tracking_number str The Tracking number given to the Parcel for tracking purpose. [optional]
rate ReprintShipmentRate [optional]
shipment_id str A unique identifier associated with Shipment ID. [optional]
shipment_options ShipmentOptions [optional]
to_address ReprintShipmentToAddress [optional]

Example

from shipping.models.reprint_shipment import ReprintShipment

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

# convert the object into a dict
reprint_shipment_dict = reprint_shipment_instance.to_dict()
# create an instance of ReprintShipment from a dict
reprint_shipment_from_dict = ReprintShipment.from_dict(reprint_shipment_dict)

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