Webex · Schema

UserSelectionObject

* `DISPLAY_NAME` - When this option is selected, `displayName` is to be shown for this virtual line. * `FIRSTNAME_LASTNAME` - When this option is selected, `firstName` and `lastName` are to be shown for this virtual line. * `LASTNAME_FIRSTNAME` - When this option is selected, `lastName` and `firstName` are to be shown for this virtual line. * `CUSTOM_NAME` - When this option is selected, `customName` is to be shown for this virtual line.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
View JSON Schema on GitHub

JSON Schema

webex-userselectionobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserSelectionObject",
  "title": "UserSelectionObject",
  "type": "string",
  "enum": [
    "CUSTOM_NAME",
    "FIRSTNAME_LASTNAME",
    "LASTNAME_FIRSTNAME",
    "DISPLAY_NAME"
  ],
  "description": " * `DISPLAY_NAME` - When this option is selected, `displayName` is to be shown for this virtual line.\n * `FIRSTNAME_LASTNAME` - When this option is selected, `firstName` and `lastName` are to be shown for this virtual line.\n * `LASTNAME_FIRSTNAME` - When this option is selected, `lastName` and `firstName` are to be shown for this virtual line.\n * `CUSTOM_NAME` - When this option is selected, `customName` is to be shown for this virtual line."
}