Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
}