Helicone · Schema

UpdateAutoTopoffSettingsRequest

AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management

Properties

Name Type Description
enabled boolean
thresholdCents number
topoffAmountCents number
stripePaymentMethodId string
View JSON Schema on GitHub

JSON Schema

helicone-updateautotopoffsettingsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAutoTopoffSettingsRequest",
  "title": "UpdateAutoTopoffSettingsRequest",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "thresholdCents": {
      "type": "number",
      "format": "double"
    },
    "topoffAmountCents": {
      "type": "number",
      "format": "double"
    },
    "stripePaymentMethodId": {
      "type": "string"
    }
  },
  "required": [
    "enabled",
    "thresholdCents",
    "topoffAmountCents",
    "stripePaymentMethodId"
  ],
  "type": "object",
  "additionalProperties": false
}