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 }