CreatorSE.Motive Data Type

An artwork or image used in a design element. Can be referenced by id from the motive library, or provided inline via a URL or binary attachment.

Properties
Name Type Description
id number Represents the unique identifier for the Motive object.
attachment string Represents a binary attachment associated with a Motive object. It typically contains file data in byte array format, allowing for storage or transmission of files related to the Motive resource.
filename string Represents the name of the associated file for the Motive object. This variable typically holds the filename as a string, often used to reference or identify the related file stored or utilized in the context of the Motive resource.
url string Represents the URL associated with a Motive object. This variable typically stores a web address or path, which may be used to reference or link to an external resource relevant to the object.
CreatorSE.Motive (JSON)
{
  "creatorse_motive" : {
    "id" : 12345,
    "attachment" : "...",
    "filename" : "...",
    "url" : "..."
  }
}
CreatorSE.Motive Data Type

An artwork or image used in a design element. Can be referenced by id from the motive library, or provided inline via a URL or binary attachment.

Properties
Name Type Description
attachment base64Binary Represents a binary attachment associated with a Motive object. It typically contains file data in byte array format, allowing for storage or transmission of files related to the Motive resource.
filename string Represents the name of the associated file for the Motive object. This variable typically holds the filename as a string, often used to reference or identify the related file stored or utilized in the context of the Motive resource.
id int Represents the unique identifier for the Motive object.
url string Represents the URL associated with a Motive object. This variable typically stores a web address or path, which may be used to reference or link to an external resource relevant to the object.
CreatorSE.Motive (XML)
<creatorse_motive>
  <id>...</id>
  <attachment>...</attachment>
  <filename>...</filename>
  <url>...</url>
</creatorse_motive>