{
"$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"
]
}