Helicone · Schema
AutoTopoffSettings
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | |
| thresholdCents | number | |
| topoffAmountCents | number | |
| stripePaymentMethodId | string | |
| lastTopoffAt | string | |
| consecutiveFailures | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AutoTopoffSettings",
"title": "AutoTopoffSettings",
"properties": {
"enabled": {
"type": "boolean"
},
"thresholdCents": {
"type": "number",
"format": "double"
},
"topoffAmountCents": {
"type": "number",
"format": "double"
},
"stripePaymentMethodId": {
"type": "string",
"nullable": true
},
"lastTopoffAt": {
"type": "string",
"nullable": true
},
"consecutiveFailures": {
"type": "number",
"format": "double"
}
},
"required": [
"enabled",
"thresholdCents",
"topoffAmountCents",
"stripePaymentMethodId",
"lastTopoffAt",
"consecutiveFailures"
],
"type": "object",
"additionalProperties": false
}