FolderExternalLinksResponse Data Type

REST Model external links response. It contains the pages with external links.

Properties
name data type description
pages array of PageExternalLink Get pages
Properties inherited from GenericResponse
messages array of Message
responseInfo ResponseInfo

Example

{
  "pages" : [ {
    "pageId" : 12345,
    "pageName" : "...",
    "links" : [ "...", "..." ]
  }, {
    "pageId" : 12345,
    "pageName" : "...",
    "links" : [ "...", "..." ]
  } ],
  "messages" : [ {
    "fieldName" : "...",
    "message" : "...",
    "type" : "SUCCESS",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  }, {
    "fieldName" : "...",
    "message" : "...",
    "type" : "INFO",
    "timestamp" : 12345,
    "image" : "...",
    "sender" : {
      "id" : 12345,
      "firstName" : "...",
      "lastName" : "...",
      "description" : "...",
      "email" : "...",
      "groups" : [ { }, { } ],
      "login" : "...",
      "password" : "..."
    },
    "id" : 12345
  } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}