Kong · Schema

BillingWorkflowPaymentSendInvoiceSettings

Payment settings for a billing workflow when the collection method is send invoice.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
collection_method string The collection method for the invoice.
due_after string The period after which the invoice is due. With some payment solutions it's only applicable for manual collection method.
View JSON Schema on GitHub

JSON Schema

kong-billingworkflowpaymentsendinvoicesettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingWorkflowPaymentSendInvoiceSettings",
  "title": "BillingWorkflowPaymentSendInvoiceSettings",
  "description": "Payment settings for a billing workflow when the collection method is send invoice.",
  "type": "object",
  "properties": {
    "collection_method": {
      "description": "The collection method for the invoice.",
      "type": "string",
      "enum": [
        "send_invoice"
      ]
    },
    "due_after": {
      "description": "The period after which the invoice is due.\nWith some payment solutions it's only applicable for manual collection method.",
      "type": "string",
      "format": "ISO8601",
      "example": "P30D",
      "default": "P30D"
    }
  },
  "required": [
    "collection_method"
  ]
}