Webex · Schema

ListDeviceSettingsObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
customizations object Customization object of the device settings.
updateInProgress boolean Progress of the device update.
deviceCount number Device count.
lastUpdateTime number Last updated time.
View JSON Schema on GitHub

JSON Schema

webex-listdevicesettingsobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListDeviceSettingsObject",
  "title": "ListDeviceSettingsObject",
  "type": "object",
  "required": [
    "customizations",
    "updateInProgress",
    "deviceCount",
    "lastUpdateTime"
  ],
  "properties": {
    "customizations": {
      "$ref": "#/components/schemas/CustomizationObject",
      "description": "Customization object of the device settings."
    },
    "updateInProgress": {
      "type": "boolean",
      "description": "Progress of the device update."
    },
    "deviceCount": {
      "type": "number",
      "example": 22,
      "description": "Device count."
    },
    "lastUpdateTime": {
      "type": "number",
      "example": 1659624763665,
      "description": "Last updated time."
    }
  }
}