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
View JSON Schema on GitHub

JSON Schema

helicone-autotopoffsettings-schema.json Raw ↑
{
  "$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
}