PaginatedResponse Data Type

Abstract Type
Subtypes
PaginatedResponseOfDiscussionTopic, PaginatedResponseOfDiscussionCommentTO
Properties
name data type constraints description
list array of DiscussionItem  
totalCount number required

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "list" : [ {
    "source" : "...",
    "userTO" : {
      "attributes" : {
        "property1" : { },
        "property2" : { }
      },
      "name" : "...",
      "key" : "..."
    },
    "commentsCount" : 12345,
    "entityKey" : "...",
    "timeOfLastChange" : 12345,
    "timeOfCreation" : 12345,
    "key" : "...",
    "description" : "...",
    "type" : "...",
    "restricted" : [ "...", "..." ],
    "viewAble" : [ "...", "..." ],
    "updateable" : [ "...", "..." ],
    "richDescription" : "...",
    "score" : 12345.0,
    "customProperties" : [ {
      "description" : "...",
      "value" : { },
      "facetAble" : true,
      "name" : "...",
      "type" : "...",
      "displayName" : "..."
    }, {
      "description" : "...",
      "value" : { },
      "facetAble" : true,
      "name" : "...",
      "type" : "...",
      "displayName" : "..."
    } ]
  }, {
    "source" : "...",
    "userTO" : {
      "attributes" : {
        "property1" : { },
        "property2" : { }
      },
      "name" : "...",
      "key" : "..."
    },
    "commentsCount" : 12345,
    "entityKey" : "...",
    "timeOfLastChange" : 12345,
    "timeOfCreation" : 12345,
    "key" : "...",
    "description" : "...",
    "type" : "...",
    "restricted" : [ "...", "..." ],
    "viewAble" : [ "...", "..." ],
    "updateable" : [ "...", "..." ],
    "richDescription" : "...",
    "score" : 12345.0,
    "customProperties" : [ {
      "description" : "...",
      "value" : { },
      "facetAble" : true,
      "name" : "...",
      "type" : "...",
      "displayName" : "..."
    }, {
      "description" : "...",
      "value" : { },
      "facetAble" : true,
      "name" : "...",
      "type" : "...",
      "displayName" : "..."
    } ]
  } ],
  "totalCount" : 12345
}