AlohaFilesResponse Data Type

Response containing the files, which must be loaded for aloha editor

Properties
name data type constraints description
jsFiles array of string   List of JS files for Aloha Editor
cssFiles array of string   List of CSS Files for Aloha Editor
messages array of Message   Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo  
inBackground boolean required boolean Whether the job was pushed into the background.

Example

{
  "jsFiles" : [ "...", "..." ],
  "cssFiles" : [ "...", "..." ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "inBackground" : true
}