Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.75 KB

File metadata and controls

34 lines (25 loc) · 1.75 KB

ShipmentDomesticParcel

Properties

Name Type Description Notes
height float Height is a part of Dimension objet where it helps determine a parcel’s girth.
length float Length is a part of Dimension objet having highest numeric value out of three required parameters (length, width, and height) of Dimension. It helps determine a parcel’s girth.
width float Width is a part of Dimension object having lowest numeric value out of three required parameters of dimension (length, width, and height). This helps determine a parcel’s girth.
dim_unit str DimUnit is a standard for measuring the physical quantities of specified dimension parameters.
weight_unit str WeightUnit is a standard for measuring the physical quantities of specified weight.
weight float Weight is the measure of how heavy an object is.

Example

from shipping.models.shipment_domestic_parcel import ShipmentDomesticParcel

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

# convert the object into a dict
shipment_domestic_parcel_dict = shipment_domestic_parcel_instance.to_dict()
# create an instance of ShipmentDomesticParcel from a dict
shipment_domestic_parcel_from_dict = ShipmentDomesticParcel.from_dict(shipment_domestic_parcel_dict)

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