ProductAreaRealSize Data Type

Physical dimensions of a print area in millimetres for a specific product size variant. Use these measurements to scale and position design elements correctly.

Available Since
1.3.0
Properties
Name Type Description
id number Unique numeric identifier for the ProductAreaRealSize.
width number Printable product area width [mm].
height number Printable product area height [mm].
assignedSize AssignedProductSize The product size variant these physical dimensions apply to.
ProductAreaRealSize (JSON)
{
  "areaRealSize" : {
    "id" : 12345,
    "width" : 310.0,
    "height" : 529.0,
    "assignedSize" : {
      "id" : 12345,
      "orderIndex" : 1,
      "default" : true,
      "productSize" : {
        "id" : 12345,
        "name" : "XXL",
        "dimensions" : 12345,
        "groupingId" : "...",
        "groupingDefault" : true
      },
      "width" : 47.0,
      "height" : 68.0,
      "length" : 12345.0,
      "accuracy" : 12345.0
    }
  }
}
ProductAreaRealSize Data Type

Physical dimensions of a print area in millimetres for a specific product size variant. Use these measurements to scale and position design elements correctly.

Available Since
1.3.0
Properties
Name Type Description
assignedSize AssignedProductSize The product size variant these physical dimensions apply to.
height float Printable product area height [mm].
id int Unique numeric identifier for the ProductAreaRealSize.
width float Printable product area width [mm].
ProductAreaRealSize (XML)
<areaRealSize>
  <id>...</id>
  <width>310</width>
  <height>529</height>
  <assignedSize>
    <id>...</id>
    <orderIndex>1</orderIndex>
    <default>...</default>
    <productSize>
      <id>...</id>
      <name>XXL</name>
      <dimensions>...</dimensions>
      <groupingId>...</groupingId>
      <groupingDefault>...</groupingDefault>
    </productSize>
    <width>47</width>
    <height>68</height>
    <length>...</length>
    <accuracy>...</accuracy>
  </assignedSize>
</areaRealSize>