Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

ShipmentInternationalParcel

Properties

Name Type Description Notes
height float
length float
width float
dim_unit str
weight_unit str
weight float

Example

from shipping.models.shipment_international_parcel import ShipmentInternationalParcel

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

# convert the object into a dict
shipment_international_parcel_dict = shipment_international_parcel_instance.to_dict()
# create an instance of ShipmentInternationalParcel from a dict
shipment_international_parcel_from_dict = ShipmentInternationalParcel.from_dict(shipment_international_parcel_dict)

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