Properties
| Name | Type | Description |
|---|---|---|
| concurrencyBlocked | boolean | True if this call was blocked by the Call Concurrency limit |
| concurrencyLimit | number | Account Call Concurrency limit |
| remainingConcurrentCalls | number | Incremental number of concurrent calls that will be allowed, including this call |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubscriptionLimits",
"title": "SubscriptionLimits",
"type": "object",
"properties": {
"concurrencyBlocked": {
"type": "boolean",
"description": "True if this call was blocked by the Call Concurrency limit",
"default": false
},
"concurrencyLimit": {
"type": "number",
"description": "Account Call Concurrency limit"
},
"remainingConcurrentCalls": {
"type": "number",
"description": "Incremental number of concurrent calls that will be allowed, including this call"
}
}
}