ListResponse Data Type

Response of savedqueries list API.

Properties
name data type description
offsetAppplied number The starting offset of the result set.
totalCount number The total number of queries returned in the current request.
resoures array of array of SavedQuery The queries.

Example

{
  "offsetAppplied" : 12345,
  "totalCount" : 12345,
  "resoures" : [ [ {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "query" : "...",
    "parameters" : [ [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "MULTIPLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "STRING",
      "collectionType" : "SINGLE"
    } ], [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "SINGLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "SINGLE"
    } ] ]
  }, {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "query" : "...",
    "parameters" : [ [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "NUMBER",
      "collectionType" : "SINGLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "SINGLE"
    } ], [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "BOOLEAN",
      "collectionType" : "MULTIPLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "NUMBER",
      "collectionType" : "MULTIPLE"
    } ] ]
  } ], [ {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "query" : "...",
    "parameters" : [ [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "STRING",
      "collectionType" : "MULTIPLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "MULTIPLE"
    } ], [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "BOOLEAN",
      "collectionType" : "SINGLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "SINGLE"
    } ] ]
  }, {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "query" : "...",
    "parameters" : [ [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "MULTIPLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "BOOLEAN",
      "collectionType" : "SINGLE"
    } ], [ {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "DECIMAL",
      "collectionType" : "MULTIPLE"
    }, {
      "name" : "...",
      "displayName" : "...",
      "defaultValue" : [ [ "...", "..." ], [ "...", "..." ] ],
      "dataType" : "BOOLEAN",
      "collectionType" : "MULTIPLE"
    } ] ]
  } ] ]
}