LensAPIResult Data Type

Transport object for results returned by Lens APIs DATA represents type of data in success result.

Properties
name data type description
apiVersion string
id string
data object
error LensErrorTO

Example

{
  "apiVersion" : "...",
  "id" : "...",
  "data" : { },
  "error" : {
    "payload" : { },
    "code" : 12345,
    "childErrors" : [ [ { }, { } ], [ { }, { } ] ],
    "message" : "...",
    "stackTrace" : "..."
  }
}