EngagementListV1 Data Type

Model class for Engagements List.

Properties
name data type description
hasMore boolean Flag to indicate if there are more engagements to retrieve.
engagements array of EngagementV1 List of engagements.

Example

{
  "hasMore" : true,
  "engagements" : [ {
    "startDate" : "...",
    "endDate" : "...",
    "id" : "...",
    "duration" : 12345,
    "contents" : "...",
    "context" : "...",
    "users" : [ {
      "uri" : "...",
      "association" : "..."
    }, {
      "uri" : "...",
      "association" : "..."
    } ],
    "recordings" : [ {
      "uri" : "...",
      "user" : "...",
      "created" : "...",
      "duration" : 12345,
      "size" : 12345,
      "contents" : "..."
    }, {
      "uri" : "...",
      "user" : "...",
      "created" : "...",
      "duration" : 12345,
      "size" : 12345,
      "contents" : "..."
    } ],
    "releaseState" : "...",
    "status" : "...",
    "pendingTime" : 12345,
    "assignedTeam" : "...",
    "associateInitiated" : true,
    "reason" : "..."
  }, {
    "startDate" : "...",
    "endDate" : "...",
    "id" : "...",
    "duration" : 12345,
    "contents" : "...",
    "context" : "...",
    "users" : [ {
      "uri" : "...",
      "association" : "..."
    }, {
      "uri" : "...",
      "association" : "..."
    } ],
    "recordings" : [ {
      "uri" : "...",
      "user" : "...",
      "created" : "...",
      "duration" : 12345,
      "size" : 12345,
      "contents" : "..."
    }, {
      "uri" : "...",
      "user" : "...",
      "created" : "...",
      "duration" : 12345,
      "size" : 12345,
      "contents" : "..."
    } ],
    "releaseState" : "...",
    "status" : "...",
    "pendingTime" : 12345,
    "assignedTeam" : "...",
    "associateInitiated" : true,
    "reason" : "..."
  } ]
}