Skip to content
Merged
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 @@ -3,7 +3,7 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel("Which kind of order")
@ApiModel( "Which kind of order" )
public enum OrderType
{
@ApiModelProperty( "Buy a product" )
Expand All @@ -16,6 +16,8 @@ public enum OrderType
UPGRADE,
@ApiModelProperty( "Change values for the available Billing Item" )
BILLING_ITEM_UPGRADE,
@ApiModelProperty( value = "Internal", hidden = true )
MONTHLY,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

document that is an "hidden" format

@ApiModelProperty( "Renew an active subscription" )
RENEWAL,
@ApiModelProperty( "An order without expiration" )
Expand Down