Kong · Schema

BillingWorkflowPaymentChargeAutomaticallySettings

Payment settings for a billing workflow when the collection method is charge automatically.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
collection_method string The collection method for the invoice.
View JSON Schema on GitHub

JSON Schema

kong-billingworkflowpaymentchargeautomaticallysettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingWorkflowPaymentChargeAutomaticallySettings",
  "title": "BillingWorkflowPaymentChargeAutomaticallySettings",
  "description": "Payment settings for a billing workflow when the collection method is charge automatically.",
  "type": "object",
  "properties": {
    "collection_method": {
      "description": "The collection method for the invoice.",
      "type": "string",
      "enum": [
        "charge_automatically"
      ]
    }
  },
  "required": [
    "collection_method"
  ]
}