Webex · Schema

FlowVersionSettingRes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
group string The group the setting belongs to.
name string The name of the flow version setting
type string The setting type.
value string The setting value.
View JSON Schema on GitHub

JSON Schema

webex-flowversionsettingres-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowVersionSettingRes",
  "title": "FlowVersionSettingRes",
  "type": "object",
  "properties": {
    "group": {
      "type": "string",
      "description": "The group the setting belongs to.",
      "example": "activityWait"
    },
    "name": {
      "type": "string",
      "description": "The name of the flow version setting",
      "example": "delayTime"
    },
    "type": {
      "type": "string",
      "description": "The setting type.",
      "example": "INTEGER"
    },
    "value": {
      "type": "string",
      "description": "The setting value.",
      "example": "2000"
    }
  }
}