From e589dd51ca4d3cd755df4d09475ef932f130884c Mon Sep 17 00:00:00 2001 From: Matteo Giordano Date: Thu, 6 Mar 2025 12:21:39 +0100 Subject: [PATCH] feat: add FINALIZED invoice custom type --- .../apiclient/dto/model/enums/CustomInvoiceType.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/cloudesire-api-client-dto/src/main/java/com/cloudesire/platform/apiclient/dto/model/enums/CustomInvoiceType.java b/cloudesire-api-client-dto/src/main/java/com/cloudesire/platform/apiclient/dto/model/enums/CustomInvoiceType.java index 79c7da3d1..f15405d46 100644 --- a/cloudesire-api-client-dto/src/main/java/com/cloudesire/platform/apiclient/dto/model/enums/CustomInvoiceType.java +++ b/cloudesire-api-client-dto/src/main/java/com/cloudesire/platform/apiclient/dto/model/enums/CustomInvoiceType.java @@ -4,15 +4,18 @@ public enum CustomInvoiceType { - @Schema( description = "The customer has to pay for the custom invoice") + @Schema( description = "The customer has to pay for the custom invoice" ) UPSELL, - @Schema( description = "As in UPSELL, but the invoice can receive new lines before being marked for completion") + @Schema( description = "As in UPSELL, but the invoice can receive new lines before being marked for completion" ) CHUNKED, - @Schema( description = "The total amount of the custom invoice has already been collected outside the platform") + @Schema( description = "A CHUNKED invoice ready to become UPSELL" ) + FINALIZED, + + @Schema( description = "The total amount of the custom invoice has already been collected outside the platform" ) CASHED, - @Schema( description = "The custom invoice is a partial or total refund of a previous one") + @Schema( description = "The custom invoice is a partial or total refund of a previous one" ) REFUND }