Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 3.24 KB

Dimension.md

File metadata and controls

12 lines (9 loc) · 3.24 KB

# Dimension

Properties

Name Type Description Notes
height float The actual height (in the measurement unit specified in the <strong>unit</strong> field) of the shipping package. All fields of the <strong>dimensions</strong> container are required if package dimensions are specified. <br/><br/> If a shipping package measured 21.5 inches in length, 15.0 inches in width, and 12.0 inches in height, the <strong>dimensions</strong> container would look as follows: <br/> <pre><code>&quot;dimensions&quot;: {<br/> &quot;length&quot;: 21.5,<br/> &quot;width&quot;: 15.0,<br/> &quot;height&quot;: 12.0,<br/> &quot;unit&quot;: &quot;INCH&quot;<br/> } </pre></code> [optional]
length float The actual length (in the measurement unit specified in the <strong>unit</strong> field) of the shipping package. All fields of the <strong>dimensions</strong> container are required if package dimensions are specified. <br/><br/> If a shipping package measured 21.5 inches in length, 15.0 inches in width, and 12.0 inches in height, the <strong>dimensions</strong> container would look as follows: <br/> <pre><code>&quot;dimensions&quot;: {<br/> &quot;length&quot;: 21.5,<br/> &quot;width&quot;: 15.0,<br/> &quot;height&quot;: 12.0,<br/> &quot;unit&quot;: &quot;INCH&quot;<br/> } </pre></code> [optional]
unit string The unit of measurement used to specify the dimensions of a shipping package. All fields of the <strong>dimensions</strong> container are required if package dimensions are specified. If the English system of measurement is being used, the applicable values for dimension units are <code>FEET</code> and <code>INCH</code>. If the metric system of measurement is being used, the applicable values for weight units are <code>METER</code> and <code>CENTIMETER</code>. The metric system is used by most countries outside of the US. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/sell/inventory/types/slr:LengthUnitOfMeasureEnum&#39;&gt;eBay API documentation</a> [optional]
width float The actual width (in the measurement unit specified in the <strong>unit</strong> field) of the shipping package. All fields of the <strong>dimensions</strong> container are required if package dimensions are specified.<br/><br/> If a shipping package measured 21.5 inches in length, 15.0 inches in width, and 12.0 inches in height, the <strong>dimensions</strong> container would look as follows: <br/> <pre><code>&quot;dimensions&quot;: {<br/> &quot;length&quot;: 21.5,<br/> &quot;width&quot;: 15.0,<br/> &quot;height&quot;: 12.0,<br/> &quot;unit&quot;: &quot;INCH&quot;<br/> } </pre></code> [optional]

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