Webex · Schema

BulkExportDTOContactServiceQueueBulkExportDTO

Bulk export Dto

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
totalResources integer Total number of items.
pageNumber integer Current page number.
pageSize integer Page size for current data set.
rel string Indicates whether more pages exist. When 'next' there are more pages available, otherwise 'last'.
resources array Indicate the page resources
View JSON Schema on GitHub

JSON Schema

webex-bulkexportdtocontactservicequeuebulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkExportDTOContactServiceQueueBulkExportDTO",
  "title": "BulkExportDTOContactServiceQueueBulkExportDTO",
  "type": "object",
  "description": "Bulk export Dto",
  "example": {
    "totalResources": 100,
    "pageNumber": 0,
    "pageSize": 50,
    "rel": "last",
    "resources": []
  },
  "properties": {
    "totalResources": {
      "type": "integer",
      "format": "int32",
      "description": "Total number of items.",
      "example": 100
    },
    "pageNumber": {
      "type": "integer",
      "format": "int32",
      "description": "Current page number.",
      "example": 0
    },
    "pageSize": {
      "type": "integer",
      "format": "int32",
      "description": "Page size for current data set.",
      "example": 50
    },
    "rel": {
      "type": "string",
      "description": "Indicates whether more pages exist. When 'next' there are more pages available, otherwise 'last'.",
      "example": "last"
    },
    "resources": {
      "type": "array",
      "description": "Indicate the page resources",
      "items": {
        "$ref": "#/components/schemas/ContactServiceQueueBulkExportDTO"
      }
    }
  }
}