Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

ShipmentReprintV2

Properties

Name Type Description Notes
shipment_id str The shipmentId is a unique identifier for an individual Shipment.
printer_alias_name str Refers to a printer connected (directly or via network) to a computer. `Max length = 60` [optional]
references ShipmentReprintV2References [optional]

Example

from shipping.models.shipment_reprint_v2 import ShipmentReprintV2

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

# convert the object into a dict
shipment_reprint_v2_dict = shipment_reprint_v2_instance.to_dict()
# create an instance of ShipmentReprintV2 from a dict
shipment_reprint_v2_from_dict = ShipmentReprintV2.from_dict(shipment_reprint_v2_dict)

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