Webex · Schema

FlowPreferenceRes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string The flow preference name.
type string The preference type.
value string The preference value.
View JSON Schema on GitHub

JSON Schema

webex-flowpreferenceres-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowPreferenceRes",
  "title": "FlowPreferenceRes",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The flow preference name.",
      "example": "hideSecureCADWarning"
    },
    "type": {
      "type": "string",
      "description": "The preference type.",
      "example": "Boolean"
    },
    "value": {
      "type": "string",
      "description": "The preference value.",
      "example": "true"
    }
  }
}