You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Height is a part of Dimension objet where it helps determine a parcel’s girth.
[optional]
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.
[optional]
unit_of_measurement
str
UnitofMeasurement is a standard for measuring the physical quantities of specified dimension parameters.
[optional]
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.
[optional]
Example
fromshipping.models.parcel_types_inner_dimension_rules_inner_max_parcel_dimensionsimportParcelTypesInnerDimensionRulesInnerMaxParcelDimensions# TODO update the JSON string belowjson="{}"# create an instance of ParcelTypesInnerDimensionRulesInnerMaxParcelDimensions from a JSON stringparcel_types_inner_dimension_rules_inner_max_parcel_dimensions_instance=ParcelTypesInnerDimensionRulesInnerMaxParcelDimensions.from_json(json)
# print the JSON string representation of the objectprint(ParcelTypesInnerDimensionRulesInnerMaxParcelDimensions.to_json())
# convert the object into a dictparcel_types_inner_dimension_rules_inner_max_parcel_dimensions_dict=parcel_types_inner_dimension_rules_inner_max_parcel_dimensions_instance.to_dict()
# create an instance of ParcelTypesInnerDimensionRulesInnerMaxParcelDimensions from a dictparcel_types_inner_dimension_rules_inner_max_parcel_dimensions_from_dict=ParcelTypesInnerDimensionRulesInnerMaxParcelDimensions.from_dict(parcel_types_inner_dimension_rules_inner_max_parcel_dimensions_dict)