CreatorSE.ResourceFile Data Type

A file resource containing binary data used for preview or production artwork in a design element.

Properties
Name Type Description
attachment string Represents the binary data associated with the resource. This data is typically used as an attachment, which could include file content or other encoded information relevant to the resource.
filename string The original filename of the attached file, including the file extension (e.g. design.pdf, artwork.png). Required on productionResource of a DesignElementDdf element; must be non-empty and contain a valid extension.
url string Represents the URL associated with a resource file. This field is typically used to store the link or path to access the resource's location.
CreatorSE.ResourceFile (JSON)
{
  "creatorse_resource_file" : {
    "attachment" : "...",
    "filename" : "...",
    "url" : "..."
  }
}
CreatorSE.ResourceFile Data Type

A file resource containing binary data used for preview or production artwork in a design element.

Properties
Name Type Description
attachment base64Binary Represents the binary data associated with the resource. This data is typically used as an attachment, which could include file content or other encoded information relevant to the resource.
filename string The original filename of the attached file, including the file extension (e.g. design.pdf, artwork.png). Required on productionResource of a DesignElementDdf element; must be non-empty and contain a valid extension.
url string Represents the URL associated with a resource file. This field is typically used to store the link or path to access the resource's location.
CreatorSE.ResourceFile (XML)
<creatorse_resource_file>
  <attachment>...</attachment>
  <filename>...</filename>
  <url>...</url>
</creatorse_resource_file>